public static enum ModelExtractor.StatementType extends Enum<ModelExtractor.StatementType>
| Enum Constant and Description |
|---|
ALL_INSTANCE
for individuals, rdf:type statements (includes super-classes)
|
ALL_SUBCLASS
for classes, rdfs:subClassOf statements (includes all super-classes)
|
ALL_SUBPROPERTY
for properties, rdfs:subPropertyOf statements (includes all
super-properties)
|
COMPLEMENT_CLASS
for classes, owl:complementOf statements
|
DATA_PROPERTY_VALUE
for individuals, data property value statements
|
DIFFERENT_FROM
for individuals, owl:differentFrom statements
|
DIRECT_INSTANCE
for individuals, rdf:type statements (only the most specific classes)
|
DIRECT_SUBCLASS
for classes, rdfs:subClassOf statements (includes only direct
super-classes)
|
DIRECT_SUBPROPERTY
for properties, rdfs:subPropertyOf statements (includes only direct
super-properties)
|
DISJOINT_CLASS
for classes, owl:disjointWith statements
|
DISJOINT_PROPERTY
for classes, owl:propertyDisjointWith statements
|
EQUIVALENT_CLASS
for classes, owl:equivalentClass statements
|
EQUIVALENT_PROPERTY
for properties, owl:equivalentProperty statements
|
INVERSE_PROPERTY
for properties, owl:inverseOf statements
|
JENA_DIRECT_INSTANCE
for individuals, jena reasoner vocabulary direct rdf:type statements
|
JENA_DIRECT_SUBCLASS
for classes, jena reasoner vocabulary direct rdfs:subClassOf
statements
|
JENA_DIRECT_SUBPROPERTY
for properties, jena reasoner vocabulary direct rdfs:subPropertyOf
statements
|
OBJECT_PROPERTY_VALUE
for individuals, object property value statements
|
SAME_AS
for individuals, owl:sameAs statements
|
| Modifier and Type | Field and Description |
|---|---|
static EnumSet<ModelExtractor.StatementType> |
ALL_CLASS_STATEMENTS
All statements about classes
|
static EnumSet<ModelExtractor.StatementType> |
ALL_INDIVIDUAL_STATEMENTS
All statements about individuals
|
static EnumSet<ModelExtractor.StatementType> |
ALL_PROPERTY_STATEMENTS
All statements about properties
|
static EnumSet<ModelExtractor.StatementType> |
ALL_STATEMENTS
All statements (without Jena predicates for direct relations)
|
static EnumSet<ModelExtractor.StatementType> |
ALL_STATEMENTS_INCLUDING_JENA
All statements (including Jena predicates for direct relations)
|
static EnumSet<ModelExtractor.StatementType> |
DEFAULT_STATEMENTS
Default statements
|
static EnumSet<ModelExtractor.StatementType> |
PROPERTY_VALUE
All property values (both object and data)
|
| Modifier and Type | Method and Description |
|---|---|
static ModelExtractor.StatementType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ModelExtractor.StatementType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ModelExtractor.StatementType ALL_INSTANCE
public static final ModelExtractor.StatementType ALL_SUBCLASS
public static final ModelExtractor.StatementType ALL_SUBPROPERTY
public static final ModelExtractor.StatementType COMPLEMENT_CLASS
public static final ModelExtractor.StatementType DATA_PROPERTY_VALUE
public static final ModelExtractor.StatementType DIFFERENT_FROM
public static final ModelExtractor.StatementType DIRECT_INSTANCE
public static final ModelExtractor.StatementType DIRECT_SUBCLASS
public static final ModelExtractor.StatementType DIRECT_SUBPROPERTY
public static final ModelExtractor.StatementType DISJOINT_CLASS
public static final ModelExtractor.StatementType DISJOINT_PROPERTY
public static final ModelExtractor.StatementType EQUIVALENT_CLASS
public static final ModelExtractor.StatementType EQUIVALENT_PROPERTY
public static final ModelExtractor.StatementType INVERSE_PROPERTY
public static final ModelExtractor.StatementType JENA_DIRECT_INSTANCE
public static final ModelExtractor.StatementType JENA_DIRECT_SUBCLASS
public static final ModelExtractor.StatementType JENA_DIRECT_SUBPROPERTY
public static final ModelExtractor.StatementType OBJECT_PROPERTY_VALUE
public static final ModelExtractor.StatementType SAME_AS
public static final EnumSet<ModelExtractor.StatementType> ALL_CLASS_STATEMENTS
public static final EnumSet<ModelExtractor.StatementType> ALL_INDIVIDUAL_STATEMENTS
public static final EnumSet<ModelExtractor.StatementType> ALL_PROPERTY_STATEMENTS
public static final EnumSet<ModelExtractor.StatementType> ALL_STATEMENTS
public static final EnumSet<ModelExtractor.StatementType> ALL_STATEMENTS_INCLUDING_JENA
public static final EnumSet<ModelExtractor.StatementType> PROPERTY_VALUE
public static final EnumSet<ModelExtractor.StatementType> DEFAULT_STATEMENTS
public static ModelExtractor.StatementType[] values()
for (ModelExtractor.StatementType c : ModelExtractor.StatementType.values()) System.out.println(c);
public static ModelExtractor.StatementType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant
with the specified nameNullPointerException - if the argument is nullCopyright © 2013. All Rights Reserved.