public enum RenderQuotedNames extends Enum<RenderQuotedNames>
Java class for RenderQuotedNames.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="RenderQuotedNames"> <restriction base="{http://www.w3.org/2001/XMLSchema}string"> <enumeration value="ALWAYS"/> <enumeration value="EXPLICIT_DEFAULT_QUOTED"/> <enumeration value="EXPLICIT_DEFAULT_UNQUOTED"/> <enumeration value="NEVER"/> </restriction> </simpleType>
Enum Constant and Description |
---|
ALWAYS |
EXPLICIT_DEFAULT_QUOTED |
EXPLICIT_DEFAULT_UNQUOTED |
NEVER |
Modifier and Type | Method and Description |
---|---|
static RenderQuotedNames |
fromValue(String v) |
String |
value() |
static RenderQuotedNames |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RenderQuotedNames[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RenderQuotedNames ALWAYS
public static final RenderQuotedNames EXPLICIT_DEFAULT_QUOTED
public static final RenderQuotedNames EXPLICIT_DEFAULT_UNQUOTED
public static final RenderQuotedNames NEVER
public static RenderQuotedNames[] values()
for (RenderQuotedNames c : RenderQuotedNames.values()) System.out.println(c);
public static RenderQuotedNames 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 nullpublic String value()
public static RenderQuotedNames fromValue(String v)
Copyright © 2020. All rights reserved.