public enum EncoderContext extends Enum<EncoderContext>
| Enum Constant and Description |
|---|
INLINE
2: Inline code context
|
SKELETON
1: Skeleton context.
|
TEXT
0: Text context.
|
| Modifier and Type | Method and Description |
|---|---|
static EncoderContext |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EncoderContext[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EncoderContext TEXT
public static final EncoderContext SKELETON
public static final EncoderContext INLINE
public static EncoderContext[] values()
for (EncoderContext c : EncoderContext.values()) System.out.println(c);
public static EncoderContext 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 © 2021. All rights reserved.