Enum Class LocationRepresentation
- All Implemented Interfaces:
Serializable
,Comparable<LocationRepresentation>
,Constable
Common location representations.
- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionThe default representation inherited from the assigned location type.A location for vehicle load transfers, alternative variant 1.A location for vehicle load transfers, alternative variant 2.A location for vehicle load transfers, alternative variant 3.A location for vehicle load transfers, alternative variant 4.A location for vehicle load transfers, alternative variant 5.A location for vehicle load transfer, generic variant.A (empty) location without any representation.A location for recharging a vehicle, alternative variant 1.A location for recharging a vehicle, alternative variant 2.A location for recharging a vehicle, generic variant.A location for some generic processing, alternative variant 1.A location for some generic processing, alternative variant 2.A location for some generic processing, generic variant. -
Method Summary
Modifier and TypeMethodDescriptionstatic LocationRepresentation
Returns the enum constant of this class with the specified name.static LocationRepresentation[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
NONE
A (empty) location without any representation. -
DEFAULT
The default representation inherited from the assigned location type. -
LOAD_TRANSFER_GENERIC
A location for vehicle load transfer, generic variant. -
LOAD_TRANSFER_ALT_1
A location for vehicle load transfers, alternative variant 1. -
LOAD_TRANSFER_ALT_2
A location for vehicle load transfers, alternative variant 2. -
LOAD_TRANSFER_ALT_3
A location for vehicle load transfers, alternative variant 3. -
LOAD_TRANSFER_ALT_4
A location for vehicle load transfers, alternative variant 4. -
LOAD_TRANSFER_ALT_5
A location for vehicle load transfers, alternative variant 5. -
WORKING_GENERIC
A location for some generic processing, generic variant. -
WORKING_ALT_1
A location for some generic processing, alternative variant 1. -
WORKING_ALT_2
A location for some generic processing, alternative variant 2. -
RECHARGE_GENERIC
A location for recharging a vehicle, generic variant. -
RECHARGE_ALT_1
A location for recharging a vehicle, alternative variant 1. -
RECHARGE_ALT_2
A location for recharging a vehicle, alternative variant 2.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum class has no constant with the specified nameNullPointerException
- if the argument is null
-