public enum FetchMode extends Enum<FetchMode>
Enum Constant and Description |
---|
DELTA_QUERY
Will fetch all properties that are mapped to Crowd.
|
FULL
Will fetch all properties that are mapped to Crowd.
|
ID
Will only fetch the external id
|
NAME
Will only fetch the entity name
|
NAME_AND_ID
Will fetch the entity name and external id
|
Modifier and Type | Method and Description |
---|---|
static FetchMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FetchMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FetchMode FULL
public static final FetchMode DELTA_QUERY
public static final FetchMode NAME_AND_ID
public static final FetchMode NAME
public static final FetchMode ID
public static FetchMode[] values()
for (FetchMode c : FetchMode.values()) System.out.println(c);
public static FetchMode 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 © 2020 Atlassian. All rights reserved.