Uses of Class
org.xcsp.common.Types.TypeAtt
-
Packages that use Types.TypeAtt Package Description org.xcsp.common org.xcsp.parser.entries -
-
Uses of Types.TypeAtt in org.xcsp.common
Methods in org.xcsp.common that return Types.TypeAtt Modifier and Type Method Description static Types.TypeAtt
Types.TypeAtt. valOf(String s)
Returns the constant that corresponds to the specified string (we need this method to manage the special constants FOR and CASE).static Types.TypeAtt
Types.TypeAtt. valueOf(String name)
Returns the enum constant of this type with the specified name.static Types.TypeAtt[]
Types.TypeAtt. values()
Returns an array containing the constants of this enum type, in the order they are declared. -
Uses of Types.TypeAtt in org.xcsp.parser.entries
Fields in org.xcsp.parser.entries with type parameters of type Types.TypeAtt Modifier and Type Field Description Map<Types.TypeAtt,String>
ParsingEntry. attributes
The attributes that are associated with the element.Methods in org.xcsp.parser.entries with parameters of type Types.TypeAtt Modifier and Type Method Description boolean
ParsingEntry. getAttributeValue(Types.TypeAtt att, boolean defaultValue)
Returns the Boolean value of the specified attribute, if it exists, the specified default value otherwise.int
ParsingEntry. getAttributeValue(Types.TypeAtt att, int defaultValue)
Returns the int value of the specified attribute, if it exists, the specified default value otherwise.<T extends Enum<T>>
TParsingEntry. getAttributeValue(Types.TypeAtt att, Class<T> clazz, T defaultValue)
Returns the value of the specified attribute, if it exists, the specified default value otherwise.
-