public enum ManagedEntityState extends Enum<ManagedEntityState>
| Enum Constant and Description |
|---|
active
Symbols with that state are ready to be used.
|
depreciated
This symbol should no longer be moved.
|
proposed
Indicates usually a newly created
Symbol that needs some kind
of confirmation. |
removed
This symbol is marked as removed
|
| Modifier and Type | Method and Description |
|---|---|
static ManagedEntityState |
getState(String uri)
Getter for the State based on the URI.
|
String |
getUri() |
static boolean |
isState(String uri) |
String |
toString() |
static ManagedEntityState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ManagedEntityState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ManagedEntityState removed
public static final ManagedEntityState depreciated
Symbol#getSuccessors() for more informationpublic static final ManagedEntityState proposed
Symbol that needs some kind
of confirmation.public static final ManagedEntityState active
public static ManagedEntityState[] values()
for (ManagedEntityState c : ManagedEntityState.values()) System.out.println(c);
public static ManagedEntityState 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 String getUri()
public String toString()
toString in class Enum<ManagedEntityState>public static ManagedEntityState getState(String uri) throws IllegalArgumentException
uri - the URIIllegalArgumentException - if the parsed URI does not represent
a statepublic static boolean isState(String uri)
Copyright © 2010-2014 The Apache Software Foundation. All Rights Reserved.