public enum HighlightEncoder extends Enum<HighlightEncoder>
| Modifier and Type | Method and Description |
|---|---|
static HighlightEncoder |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static HighlightEncoder[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final HighlightEncoder PLAIN
public static final HighlightEncoder HTML
public static HighlightEncoder[] values()
for (HighlightEncoder c : HighlightEncoder.values()) System.out.println(c);
public static HighlightEncoder 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 © 2024. All Rights Reserved.