Enum Class XLink.Type

All Implemented Interfaces:
Serializable, Comparable<XLink​.Type>, Constable
Enclosing class:
XLink

public static enum XLink.Type extends Enum<XLink.Type>
The type of a xlink. This type can be determined from the set of non-null attribute values in a XLink instance.
Since:
0.3
See Also:
  • Enum Constant Details

    • SIMPLE

      public static final XLink.Type SIMPLE
      A simple link. Allows the href, role, arcrole, title, show and actuate attributes, all of them being optional.
    • EXTENDED

      public static final XLink.Type EXTENDED
      An extended, possibly multi-resource, link. Allows the role and title attributes, all of them being optional.
    • LOCATOR

      public static final XLink.Type LOCATOR
      A pointer to an external resource. Allows the href, role, title and label attributes, where href is mandatory and all other are optional.
    • RESOURCE

      public static final XLink.Type RESOURCE
      An internal resource. Allows the role, title and label attributes, all of them being optional.
    • ARC

      public static final XLink.Type ARC
      A traversal rule between resources. Allows the arcrole, title, show, actuate from and to attributes, all of them being optional.
    • TITLE

      public static final XLink.Type TITLE
      A descriptive title for another linking element.
    • AUTO

      public static final XLink.Type AUTO
      A special value for computing the type automatically from the XLink attributes. After a call to XLink​.set­Type(AUTO), any call to XLink​.get­Type() will infer the type from the non-null attributes as according the table documented in the XLink javadoc.
  • Method Details

    • values

      public static XLink.Type[] values()
      Returns 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
    • valueOf

      public static XLink.Type valueOf(String name)
      Returns 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:
      Illegal­Argument­Exception - if this enum class has no constant with the specified name
      Null­Pointer­Exception - if the argument is null