public enum CraftPropertyName extends Enum<CraftPropertyName>
Enum Constant and Description |
---|
CALLSIGN |
DESTINATION |
DIMENSION_A |
DIMENSION_B |
DIMENSION_C |
DIMENSION_D |
DRAUGHT_METRES |
IMO_NUMBER |
LENGTH_METRES |
NAME |
SHIP_TYPE |
WIDTH_METRES |
Modifier and Type | Method and Description |
---|---|
static CraftPropertyName |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CraftPropertyName[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CraftPropertyName DESTINATION
public static final CraftPropertyName DIMENSION_A
public static final CraftPropertyName DIMENSION_B
public static final CraftPropertyName DIMENSION_C
public static final CraftPropertyName DIMENSION_D
public static final CraftPropertyName NAME
public static final CraftPropertyName IMO_NUMBER
public static final CraftPropertyName CALLSIGN
public static final CraftPropertyName LENGTH_METRES
public static final CraftPropertyName SHIP_TYPE
public static final CraftPropertyName WIDTH_METRES
public static final CraftPropertyName DRAUGHT_METRES
public static CraftPropertyName[] values()
for (CraftPropertyName c : CraftPropertyName.values()) System.out.println(c);
public static CraftPropertyName 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 © 2020. All rights reserved.