public enum Content extends Enum<Content>
| Enum Constant and Description |
|---|
LOCALIZED_DATA |
NON_LOCALIZED_DATA |
| Modifier and Type | Method and Description |
|---|---|
static Content |
fromValue(String value) |
String |
toString() |
String |
value() |
static Content |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Content[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Content LOCALIZED_DATA
public static final Content NON_LOCALIZED_DATA
public static Content[] values()
for (Content c : Content.values()) System.out.println(c);
public static Content 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 String value()
Copyright © 2020 Contrast Security. All rights reserved.