public enum TargetIdentifierType extends Enum<TargetIdentifierType>
| Enum Constant and Description |
|---|
CallSign
Call Sign
|
IMO |
MMSI
MMSI number
|
Other |
| Modifier and Type | Method and Description |
|---|---|
static TargetIdentifierType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TargetIdentifierType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TargetIdentifierType MMSI
public static final TargetIdentifierType IMO
public static final TargetIdentifierType CallSign
public static final TargetIdentifierType Other
public static TargetIdentifierType[] values()
for (TargetIdentifierType c : TargetIdentifierType.values()) System.out.println(c);
public static TargetIdentifierType 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 © 2016. All rights reserved.