public static enum Oid.State extends Enum<Oid.State>
| Enum Constant and Description |
|---|
PERSISTENT |
TRANSIENT |
VIEWMODEL |
| Modifier and Type | Method and Description |
|---|---|
String |
getCode() |
boolean |
isPersistent() |
boolean |
isTransient() |
boolean |
isViewModel() |
static Oid.State |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Oid.State[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Oid.State PERSISTENT
public static Oid.State[] values()
for (Oid.State c : Oid.State.values()) System.out.println(c);
public static Oid.State 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 isTransient()
public boolean isViewModel()
public boolean isPersistent()
Copyright © 2010–2014 The Apache Software Foundation. All rights reserved.