Enum EqualityAxiomatization
java.lang.Object
java.lang.Enum<EqualityAxiomatization>
tech.oxfordsemantic.jrdfox.client.EqualityAxiomatization
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<EqualityAxiomatization>
,java.lang.constant.Constable
public enum EqualityAxiomatization extends java.lang.Enum<EqualityAxiomatization>
Determines the type of equality axiomatization (i.e., how
owl:sameAs
is being interpreted) in a data store.-
Nested Class Summary
-
Enum Constant Summary
Enum Constants Enum Constant Description CHASE
Theowl:sameAs
property represents equality relation as defined in the various works on the chase in the database literature.NO_UNA
Theowl:sameAs
property represents equality without the Unique Name Assumption.OFF
Theowl:sameAs
property has no special meaning and is just another property.UNA
Theowl:sameAs
property represents equality with the Unique Name Assumption. -
Method Summary
Modifier and Type Method Description java.lang.String
toString()
static EqualityAxiomatization
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static EqualityAxiomatization[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
OFF
Theowl:sameAs
property has no special meaning and is just another property. -
NO_UNA
Theowl:sameAs
property represents equality without the Unique Name Assumption. Thus, deriving< a, owl:sameAs, b >
wherea
andb
are distinct IRIs does not lead to a contradiction. -
UNA
Theowl:sameAs
property represents equality with the Unique Name Assumption. Thus, deriving< a, owl:sameAs, b >
wherea
andb
are distinct IRIs leads to a contradiction, which is represented by deriving< a, rdf:type, owl:Nothing >
and< b, rdf:type, owl:Nothing >
. -
CHASE
Theowl:sameAs
property represents equality relation as defined in the various works on the chase in the database literature. In particular, no triples of the form< a, owl:sameAs, a >
are derived, and moreover the built-in functions are applied to just the representative individuals. Data stores that use this type of equality relation do not support incremental reasoning. Hence, this option is intended to be used in situations where reasoning is a one-of operation.
-
-
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:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
toString
public java.lang.String toString()- Overrides:
toString
in classjava.lang.Enum<EqualityAxiomatization>
-