public enum StreetSideIndicator extends Enum<StreetSideIndicator>
Enum Constant and Description |
---|
BOTH
Neither left nor right defined for this address
|
LEFT
Left side of street
|
RIGHT
Right side of street
|
UNKNOWN
Side not known
|
Modifier and Type | Method and Description |
---|---|
static StreetSideIndicator |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static StreetSideIndicator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StreetSideIndicator UNKNOWN
public static final StreetSideIndicator LEFT
public static final StreetSideIndicator RIGHT
public static final StreetSideIndicator BOTH
public static StreetSideIndicator[] values()
for (StreetSideIndicator c : StreetSideIndicator.values()) System.out.println(c);
public static StreetSideIndicator 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 © 2024. All rights reserved.