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