public enum ObjectModelStatus extends java.lang.Enum<ObjectModelStatus>
Enum Constant and Description |
---|
INITIALIZED |
PUBLISHED |
SUBSCRIBED |
UNKNOWN |
Modifier and Type | Method and Description |
---|---|
static ObjectModelStatus |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ObjectModelStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ObjectModelStatus UNKNOWN
public static final ObjectModelStatus PUBLISHED
public static final ObjectModelStatus INITIALIZED
public static final ObjectModelStatus SUBSCRIBED
public static ObjectModelStatus[] values()
for (ObjectModelStatus c : ObjectModelStatus.values()) System.out.println(c);
public static ObjectModelStatus valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullAuthor: SMASH LAB - University of Calabria (UNICAL)