public enum FormatElementCategory extends Enum<FormatElementCategory>
https://www.oxygenxml.com/doc/versions/24.0/ug-editorEclipse/topics/format-and-indent-xml.html
Enum Constant and Description |
---|
IgnoreSpace
In the ignore space category, all whitespace is considered insignificant.
|
MixedContent
In the mixed content category, a single whitespace between text characters is
considered significant and all other spaces are considered insignificant.
|
NormalizeSpace
In the normalize space category, a single whitespace character between
character strings is considered significant and all other spaces are
considered insignificant.
|
PreserveSpace
In the preserve space category, all whitespace in the element is regarded as
significant.
|
Modifier and Type | Method and Description |
---|---|
static FormatElementCategory |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FormatElementCategory[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FormatElementCategory IgnoreSpace
public static final FormatElementCategory NormalizeSpace
public static final FormatElementCategory MixedContent
public static final FormatElementCategory PreserveSpace
public static FormatElementCategory[] values()
for (FormatElementCategory c : FormatElementCategory.values()) System.out.println(c);
public static FormatElementCategory 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. All rights reserved.