001/* *********************************************************************** *
002 * project: org.matsim.*
003 *                                                                         *
004 * *********************************************************************** *
005 *                                                                         *
006 * copyright       : (C) 2008 by the members listed in the COPYING,        *
007 *                   LICENSE and WARRANTY file.                            *
008 * email           : info at matsim dot org                                *
009 *                                                                         *
010 * *********************************************************************** *
011 *                                                                         *
012 *   This program is free software; you can redistribute it and/or modify  *
013 *   it under the terms of the GNU General Public License as published by  *
014 *   the Free Software Foundation; either version 2 of the License, or     *
015 *   (at your option) any later version.                                   *
016 *   See also COPYING, LICENSE and WARRANTY file                           *
017 *                                                                         *
018 * *********************************************************************** */
019
020package org.matsim.households;
021
022/**
023 * @author dgrether
024 */
025public interface HouseholdsSchemaV10Names {
026
027        public final static String HOUSEHOLDS = "households";
028        public final static String HOUSEHOLD = "household";
029        public final static String ID = "id";
030        public final static String MEMBERS = "members";
031        public final static String PERSONID = "personId";
032        public final static String REFID = "refId";
033        public final static String INCOME = "income";
034        public final static String CURRENCY = "currency";
035        public final static String PERIOD = "period";
036        public final static String VEHICLEDEFINITIONID = "vehicleDefinitionId";
037        public final static String VEHICLES = "vehicles";
038        public final static String ATTRIBUTES = "attributes";
039        public final static String ATTRIBUTE = "attribute";
040
041}