public static enum HamletImpl.EOpt extends Enum<HamletImpl.EOpt>
| Enum Constant and Description | 
|---|
| ENDTAGneeds end(close) tag | 
| INLINEThe content is inline | 
| PREThe 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 © 2022 Apache Software Foundation. All rights reserved.