public static enum ProfileState.Type extends Enum<ProfileState.Type>
Modifier and Type | Method and Description |
---|---|
static ProfileState.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ProfileState.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ProfileState.Type STREET
public static final ProfileState.Type TRANSIT
public static final ProfileState.Type TRANSFER
public static ProfileState.Type[] values()
for (ProfileState.Type c : ProfileState.Type.values()) System.out.println(c);
public static ProfileState.Type valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2019. All rights reserved.