public enum PlainTextStrategy extends Enum<PlainTextStrategy>
| Enum Constant and Description |
|---|
STATIC_BYTE_ARRAYS_VIA_UNLOADED_CLASS |
STATIC_STRINGS |
| Modifier and Type | Method and Description |
|---|---|
static PlainTextStrategy |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PlainTextStrategy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PlainTextStrategy STATIC_STRINGS
public static final PlainTextStrategy STATIC_BYTE_ARRAYS_VIA_UNLOADED_CLASS
public static PlainTextStrategy[] values()
for (PlainTextStrategy c : PlainTextStrategy.values()) System.out.println(c);
public static PlainTextStrategy 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 © 2016–2020 Fizzed, Inc. All rights reserved.