public static enum InsingnificantPartData.InsignificantPartType extends Enum<InsingnificantPartData.InsignificantPartType>
| Enum Constant and Description |
|---|
COMMENT
XML Comment.
|
PI
XML processing Instruction.
|
TEXT
Normal text content (e.g indentation, etc).
|
| Modifier and Type | Method and Description |
|---|---|
static InsingnificantPartData.InsignificantPartType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static InsingnificantPartData.InsignificantPartType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final InsingnificantPartData.InsignificantPartType TEXT
public static final InsingnificantPartData.InsignificantPartType COMMENT
public static final InsingnificantPartData.InsignificantPartType PI
public static InsingnificantPartData.InsignificantPartType[] values()
for (InsingnificantPartData.InsignificantPartType c : InsingnificantPartData.InsignificantPartType.values()) System.out.println(c);
public static InsingnificantPartData.InsignificantPartType 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 © 2020. All rights reserved.