public enum MatrixId extends Enum<MatrixId> implements Serializable
| Enum Constant and Description |
|---|
FISHING_METIER |
GEAR |
OPERATION |
SUPPORT_WITH_GEAR |
SUPPORT_WITH_METIER |
VESSEL |
| Modifier and Type | Method and Description |
|---|---|
static MatrixId |
fromInteger(Integer value)
Creates an instance of MatrixId from
value. |
String |
getName()
Gets the underlying name of this type safe enumeration.
|
Integer |
getValue()
Gets the underlying value of this type safe enumeration.
|
boolean |
hasInitError() |
static List<Integer> |
literals()
Returns an unmodifiable list containing the literals that are known by this enumeration.
|
static List<String> |
names()
Returns an unmodifiable list containing the names of the literals that are known
by this enumeration.
|
String |
toString() |
static MatrixId |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MatrixId[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MatrixId VESSEL
public static final MatrixId OPERATION
public static final MatrixId GEAR
public static final MatrixId FISHING_METIER
public static final MatrixId SUPPORT_WITH_GEAR
public static final MatrixId SUPPORT_WITH_METIER
public static MatrixId[] values()
for (MatrixId c : MatrixId.values()) System.out.println(c);
public static MatrixId 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 nullpublic boolean hasInitError()
public String toString()
toString in class Enum<MatrixId>Object.toString()public static MatrixId fromInteger(Integer value)
value.value - the value to create the MatrixId from.public Integer getValue()
public String getName()
public static List<Integer> literals()
Copyright © 2013. All Rights Reserved.