public enum CreateMode extends Enum<CreateMode>
Create
modes.Enum Constant and Description |
---|
ID_FROM_CLIENT
The ID is set by the client.
|
ID_FROM_SERVER
The ID is set by the server.
|
Modifier and Type | Method and Description |
---|---|
static CreateMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CreateMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CreateMode ID_FROM_CLIENT
public static final CreateMode ID_FROM_SERVER
public static CreateMode[] values()
for (CreateMode c : CreateMode.values()) System.out.println(c);
public static CreateMode 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 © 2010-2018, ForgeRock All Rights Reserved.