Enum Affinity

java.lang.Object
java.lang.Enum<Affinity>
net.sf.saxon.type.Affinity
All Implemented Interfaces:
Serializable, Comparable<Affinity>, java.lang.constant.Constable

public enum Affinity extends Enum<Affinity>
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 Constants
    Enum Constant
    Description
    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.
    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 identical
    The 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

    Modifier and Type
    Method
    Description
    static Affinity
    Returns the enum constant of this type with the specified name.
    static Affinity[]
    Returns an array containing the constants of this enum type, in the order they are declared.

    Methods inherited from class java.lang.Object

    getClass, notify, notifyAll, wait, wait, wait
  • Enum Constant Details

    • SAME_TYPE

      public static final Affinity SAME_TYPE
      The two types are identical
    • SUBSUMES

      public static final Affinity 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

      public static final Affinity 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

      public static final Affinity 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

      public static final Affinity 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

      public static Affinity[] 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

      public static Affinity valueOf(String name)
      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 name
      NullPointerException - if the argument is null