- All Implemented Interfaces:
- Serializable,- Comparable<Name.Quoted>,- Constable
- Enclosing interface:
- Name
A flag indicating whether the name is quoted or not.
 
 Quoting of names can be overridden by
 Settings.getRenderQuotedNames().
- Author:
- Lukas Eder
- 
Nested Class SummaryNested classes/interfaces inherited from class java.lang.EnumEnum.EnumDesc<E extends Enum<E>>
- 
Enum Constant SummaryEnum ConstantsEnum ConstantDescriptionThe name is not quoted explicitly.TheName.qualified()name has mixed values for individualName.quoted()flags.The name is explicitly quoted.The name is explicitly not quoted.
- 
Method SummaryModifier and TypeMethodDescriptionstatic Name.QuotedReturns the enum constant of this class with the specified name.static Name.Quoted[]values()Returns an array containing the constants of this enum class, in the order they are declared.
- 
Enum Constant Details- 
QUOTEDThe name is explicitly quoted.
- 
UNQUOTEDThe name is explicitly not quoted.
- 
DEFAULTThe name is not quoted explicitly.The behaviour of this name's quoting is governed by RenderQuotedNames.EXPLICIT_DEFAULT_QUOTEDandRenderQuotedNames.EXPLICIT_DEFAULT_UNQUOTED.
- 
MIXEDTheName.qualified()name has mixed values for individualName.quoted()flags.
 
- 
- 
Method Details- 
valuesReturns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
 
- 
valueOfReturns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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:
- IllegalArgumentException- if this enum class has no constant with the specified name
- NullPointerException- if the argument is null
 
 
-