Package net.sf.saxon.type
Enum Affinity
- All Implemented Interfaces:
Serializable
,Comparable<Affinity>
,java.lang.constant.Constable
A set of constants enumerating the possible relationships between one type and another
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionThe two types have no instances in common; if a value is an instance of one type, then it is not an instance of the other.The two types have intersecting value spaces; there are values that belong to both types, but neither type subsumes the other.The two types are identicalThe second type subsumes the first; all values that are instances of the first type are also instances of the second.The first type subsumes the second; all values that are instances of the second type are also instances of the first. -
Method Summary
-
Enum Constant Details
-
SAME_TYPE
The two types are identical -
SUBSUMES
The first type subsumes the second; all values that are instances of the second type are also instances of the first. For example, xs:decimal subsumes xs:integer; node() subsumes element(). -
SUBSUMED_BY
The second type subsumes the first; all values that are instances of the first type are also instances of the second. For example, xs:integer is subsumed by xs:decimal; element() is subsumed by node() -
DISJOINT
The two types have no instances in common; if a value is an instance of one type, then it is not an instance of the other. For example, xs:string and xs:boolean are disjoint, as are element() and attribute() -
OVERLAPS
The two types have intersecting value spaces; there are values that belong to both types, but neither type subsumes the other. For example, union(A, B) and union(A, C) overlap. As a special case, xs:string? and xs:boolean? overlap, because both types allow an empty sequence.
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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 type has no constant with the specified nameNullPointerException
- if the argument is null
-