public enum SensitivityLabelSource extends Enum<SensitivityLabelSource>
Enum Constant and Description |
---|
CURRENT
Enum value current.
|
RECOMMENDED
Enum value recommended.
|
Modifier and Type | Method and Description |
---|---|
static SensitivityLabelSource |
fromString(String value)
Parses a serialized value to a SensitivityLabelSource instance.
|
String |
toString() |
static SensitivityLabelSource |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SensitivityLabelSource[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SensitivityLabelSource CURRENT
public static final SensitivityLabelSource RECOMMENDED
public static SensitivityLabelSource[] values()
for (SensitivityLabelSource c : SensitivityLabelSource.values()) System.out.println(c);
public static SensitivityLabelSource 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 SensitivityLabelSource fromString(String value)
value
- the serialized value to parse.public String toString()
toString
in class Enum<SensitivityLabelSource>
Copyright © 2019. All rights reserved.