public static enum ObjectQ.ConfirmationMode extends java.lang.Enum<ObjectQ.ConfirmationMode>
Enum Constant and Description |
---|
CONFIRMED
CMIS mode confirmed.
|
NON_CONFIRMED
CMIS mode unconfirmed.
|
NONE
CMIS mode unassigned.
|
Modifier and Type | Method and Description |
---|---|
static ObjectQ.ConfirmationMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ObjectQ.ConfirmationMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ObjectQ.ConfirmationMode CONFIRMED
public static final ObjectQ.ConfirmationMode NON_CONFIRMED
public static final ObjectQ.ConfirmationMode NONE
public static ObjectQ.ConfirmationMode 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 nullpublic static ObjectQ.ConfirmationMode[] values()
for (ObjectQ.ConfirmationMode c : ObjectQ.ConfirmationMode.values()) System.out.println(c);