public enum KindOfUpdateTelegramm extends Enum<KindOfUpdateTelegramm>
Enum Constant and Description |
---|
CREATED
Es wurde ein neues dynamisches Objekt erzeugt
|
UPDATE_NAME
Der Name eines Objekts hat sich geändert.
|
UPDATE_NOT_VALID_SINCE
Der Zeitpunkt, an dem das Objekt ungültig wurde, hat sich geändert
|
Modifier and Type | Method and Description |
---|---|
byte |
getCode() |
static KindOfUpdateTelegramm |
getInstance(byte code) |
String |
getName() |
String |
toString() |
static KindOfUpdateTelegramm |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static KindOfUpdateTelegramm[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final KindOfUpdateTelegramm UPDATE_NAME
public static final KindOfUpdateTelegramm UPDATE_NOT_VALID_SINCE
public static final KindOfUpdateTelegramm CREATED
public static KindOfUpdateTelegramm[] values()
for (KindOfUpdateTelegramm c : KindOfUpdateTelegramm.values()) System.out.println(c);
public static KindOfUpdateTelegramm 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 static KindOfUpdateTelegramm getInstance(byte code)
public byte getCode()
public String getName()
public String toString()
toString
in class Enum<KindOfUpdateTelegramm>