Definition at line 5 of file HouseholdUtils.java.
◆ getHouseholdAttribute()
| static <F extends Household & Attributable> Object org.matsim.households.HouseholdUtils.getHouseholdAttribute |
( |
F |
household, |
|
|
String |
key |
|
) |
| |
|
static |
Definition at line 9 of file HouseholdUtils.java.
10 return household.getAttributes().getAttribute( key );
◆ putHouseholdAttribute()
| static <F extends Household & Attributable> void org.matsim.households.HouseholdUtils.putHouseholdAttribute |
( |
F |
household, |
|
|
String |
key, |
|
|
Object |
value |
|
) |
| |
|
static |
Definition at line 13 of file HouseholdUtils.java.
14 household.getAttributes().putAttribute( key, value ) ;
◆ removeHouseholdAttribute()
| static <F extends Household & Attributable> Object org.matsim.households.HouseholdUtils.removeHouseholdAttribute |
( |
F |
household, |
|
|
String |
key |
|
) |
| |
|
static |
Definition at line 17 of file HouseholdUtils.java.
18 return household.getAttributes().removeAttribute( key );
The documentation for this class was generated from the following file: