public enum AssuredMode extends Enum<AssuredMode>
| Enum Constant and Description |
|---|
SAFE_DATA_MODE
Safe data assured mode.
|
SAFE_READ_MODE
Safe read assured mode.
|
| Modifier and Type | Method and Description |
|---|---|
byte |
getValue()
Get a numeric representation of the mode.
|
static AssuredMode |
valueOf(byte value)
Returns the AssuredMode matching the passed mode numeric representation.
|
static AssuredMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AssuredMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AssuredMode SAFE_READ_MODE
public static final AssuredMode SAFE_DATA_MODE
public static AssuredMode[] values()
for (AssuredMode c : AssuredMode.values()) System.out.println(c);
public static AssuredMode 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 nullpublic static AssuredMode valueOf(byte value) throws IllegalArgumentException
value - The numeric value for the mode to returnIllegalArgumentException - If provided mode value is
wrongpublic byte getValue()
Copyright © 2010-2015 ForgeRock AS. All Rights Reserved.