Enum XSD.Datatype

java.lang.Object
java.lang.Enum<XSD.Datatype>
org.eclipse.rdf4j.model.vocabulary.XSD.Datatype
All Implemented Interfaces:
Serializable, Comparable<XSD.Datatype>
Enclosing class:
XSD

public static enum XSD.Datatype extends Enum<XSD.Datatype>
  • Enum Constant Details

  • Method Details

    • values

      public static XSD.Datatype[] 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 XSD.Datatype 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
    • isPrimitiveDatatype

      public boolean isPrimitiveDatatype()
      Checks whether the supplied datatype is a primitive XML Schema datatype.
      Returns:
      true if the datatype is a primitive type
    • isDerivedDatatype

      public boolean isDerivedDatatype()
      Checks whether the supplied datatype is a derived XML Schema datatype.
      Returns:
      true if the datatype is a derived type
    • isBuiltInDatatype

      public boolean isBuiltInDatatype()
      Checks whether the supplied datatype is a built-in XML Schema datatype.
      Returns:
      true if it is a primitive or derived XML Schema type
    • isNumericDatatype

      public boolean isNumericDatatype()
      Checks whether the supplied datatype is a numeric datatype, i.e.if it is equal to xsd:float, xsd:double, xsd:decimal or one of the datatypes derived from xsd:decimal.
      Returns:
      true of it is a decimal or floating point type
    • isDecimalDatatype

      public boolean isDecimalDatatype()
      Checks whether the supplied datatype is equal to xsd:decimal or one of the built-in datatypes that is derived from xsd:decimal.
      Returns:
      true if it is a decimal datatype
    • isIntegerDatatype

      public boolean isIntegerDatatype()
      Checks whether the supplied datatype is equal to xsd:integer or one of the built-in datatypes that is derived from xsd:integer.
      Returns:
      true if it is an integer type
    • isFloatingPointDatatype

      public boolean isFloatingPointDatatype()
      Checks whether the supplied datatype is equal to xsd:float or xsd:double.
      Returns:
      true if it is a floating point type
    • isCalendarDatatype

      public boolean isCalendarDatatype()
      Checks whether the supplied datatype is equal to xsd:dateTime, xsd:date, xsd:time, xsd:gYearMonth, xsd:gMonthDay, xsd:gYear, xsd:gMonth or xsd:gDay.These are the primitive datatypes that represent dates and/or times.
      Returns:
      true if it is a calendar type
      See Also:
    • isDurationDatatype

      public boolean isDurationDatatype()
      Checks whether the supplied datatype is equal to xsd:duration, xsd:dayTimeDuration, xsd:yearMonthDuration. These are the datatypes that represents durations.
      Returns:
      true if it is a duration type
      See Also:
    • isOrderedDatatype

      public boolean isOrderedDatatype()
      Checks whether the supplied datatype is ordered.The values of an ordered datatype can be compared to each other using operators like < and >.
      Returns:
      true if the datatype is ordered
    • getIri

      public IRI getIri()
    • getCoreDatatype

      public CoreDatatype getCoreDatatype()
    • from

      public static Optional<XSD.Datatype> from(IRI datatype)
    • from

      public static Optional<XSD.Datatype> from(CoreDatatype.XSD datatype)