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 SummaryEnum Constants Enum Constant Description CHASETheowl:sameAsproperty represents equality relation as defined in the various works on the chase in the database literature.NO_UNATheowl:sameAsproperty represents equality without the Unique Name Assumption.OFFTheowl:sameAsproperty has no special meaning and is just another property.UNATheowl:sameAsproperty represents equality with the Unique Name Assumption.
- 
Method SummaryModifier and Type Method Description java.lang.StringtoString()static EqualityAxiomatizationvalueOf(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- 
OFFTheowl:sameAsproperty has no special meaning and is just another property.
- 
NO_UNATheowl:sameAsproperty represents equality without the Unique Name Assumption. Thus, deriving< a, owl:sameAs, b >whereaandbare distinct IRIs does not lead to a contradiction.
- 
UNATheowl:sameAsproperty represents equality with the Unique Name Assumption. Thus, deriving< a, owl:sameAs, b >whereaandbare distinct IRIs leads to a contradiction, which is represented by deriving< a, rdf:type, owl:Nothing >and< b, rdf:type, owl:Nothing >.
- 
CHASETheowl:sameAsproperty 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- 
valuesReturns 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
 
- 
valueOfReturns 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 name
- java.lang.NullPointerException- if the argument is null
 
- 
toStringpublic java.lang.String toString()- Overrides:
- toStringin class- java.lang.Enum<EqualityAxiomatization>
 
 
-