public static enum HamletImpl.EOpt extends Enum<HamletImpl.EOpt>
Enum Constant and Description |
---|
ENDTAG
needs end(close) tag
|
INLINE
The content is inline
|
PRE
The content is preformatted
|
Modifier and Type | Method and Description |
---|---|
static HamletImpl.EOpt |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static HamletImpl.EOpt[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final HamletImpl.EOpt ENDTAG
public static final HamletImpl.EOpt INLINE
public static final HamletImpl.EOpt PRE
public static HamletImpl.EOpt[] values()
for (HamletImpl.EOpt c : HamletImpl.EOpt.values()) System.out.println(c);
public static HamletImpl.EOpt 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 © 2008–2019 Apache Software Foundation. All rights reserved.