Package org.thymeleaf.engine
Enum IteratedGatheringModelProcessable.IterationWhiteSpaceHandling
- java.lang.Object
-
- java.lang.Enum<IteratedGatheringModelProcessable.IterationWhiteSpaceHandling>
-
- org.thymeleaf.engine.IteratedGatheringModelProcessable.IterationWhiteSpaceHandling
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<IteratedGatheringModelProcessable.IterationWhiteSpaceHandling>
- Enclosing class:
- IteratedGatheringModelProcessable
static enum IteratedGatheringModelProcessable.IterationWhiteSpaceHandling extends java.lang.Enum<IteratedGatheringModelProcessable.IterationWhiteSpaceHandling>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description MULTIPLE_ITERSINGLE_ITERZERO_ITER
-
Constructor Summary
Constructors Modifier Constructor Description privateIterationWhiteSpaceHandling()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static IteratedGatheringModelProcessable.IterationWhiteSpaceHandlingvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static IteratedGatheringModelProcessable.IterationWhiteSpaceHandling[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ZERO_ITER
public static final IteratedGatheringModelProcessable.IterationWhiteSpaceHandling ZERO_ITER
-
SINGLE_ITER
public static final IteratedGatheringModelProcessable.IterationWhiteSpaceHandling SINGLE_ITER
-
MULTIPLE_ITER
public static final IteratedGatheringModelProcessable.IterationWhiteSpaceHandling MULTIPLE_ITER
-
-
Method Detail
-
values
public static IteratedGatheringModelProcessable.IterationWhiteSpaceHandling[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (IteratedGatheringModelProcessable.IterationWhiteSpaceHandling c : IteratedGatheringModelProcessable.IterationWhiteSpaceHandling.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static IteratedGatheringModelProcessable.IterationWhiteSpaceHandling valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
-