public static enum AccessClient.CompatibilityMode extends java.lang.Enum<AccessClient.CompatibilityMode>
| Enum Constant and Description |
|---|
OAM_10G
OAM_10G specifies Oracle Access Manager 10G compatibility mode while
interacting with the OAM server.
|
OAM_11G
OAM_11G specifies Oracle Access Manager 11G compatibility mode while
interacting with the OAM server.
|
OAM_12C
OAM_12C specifies Oracle Access Manager 12C compatibility mode while
interacting with the OAM server.
|
| Modifier and Type | Method and Description |
|---|---|
static AccessClient.CompatibilityMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AccessClient.CompatibilityMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AccessClient.CompatibilityMode OAM_10G
public static final AccessClient.CompatibilityMode OAM_11G
public static final AccessClient.CompatibilityMode OAM_12C
public static AccessClient.CompatibilityMode[] values()
for (AccessClient.CompatibilityMode c : AccessClient.CompatibilityMode.values()) System.out.println(c);
public static AccessClient.CompatibilityMode 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 null