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