public enum GetOption extends Enum<GetOption>
Used to define the behavior of retrieving documents operations.
Enum Constant and Description |
---|
chkoutExclusive
Check out the file exclusively
|
chkoutNonExclusive
Check out the file non-exclusively
|
none
Do not check out the file
|
Modifier and Type | Method and Description |
---|---|
static EnumSet<GetOption> |
getOptions(String stringValues) |
static GetOption |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static GetOption[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GetOption none
public static final GetOption chkoutExclusive
public static final GetOption chkoutNonExclusive
public static GetOption[] values()
for (GetOption c : GetOption.values()) System.out.println(c);
public static GetOption 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 nullCopyright © 2005–2017 Alfresco Software. All rights reserved.