public enum SchemaQueryType extends Enum<SchemaQueryType>
| Enum Constant and Description |
|---|
ANCESTOR
Query to get ancestors in the hierarchy (all superclass, all superproperty)
|
CHILD
Query to get children in the hierarchy (direct subclass, direct subproperty)
|
DESCENDANT
Query to get descendants in the hierarchy (all subclass, all subproperty)
|
DISJOINT
Query to get disjoints (disjoint class, disjoint property)
|
DOMAIN
Query to get property domains
|
EQUIVALENT
Query to get equivalents (equivalent class, equivalent property)
|
INVERSE
Query to get inverse properties
|
PARENT
Query to get parents in the hierarchy (direct superclass, direct superproperty)
|
RANGE
Query to get property ranges
|
| Modifier and Type | Method and Description |
|---|---|
static SchemaQueryType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SchemaQueryType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SchemaQueryType EQUIVALENT
public static final SchemaQueryType CHILD
public static final SchemaQueryType PARENT
public static final SchemaQueryType DESCENDANT
public static final SchemaQueryType ANCESTOR
public static final SchemaQueryType DISJOINT
public static final SchemaQueryType INVERSE
public static final SchemaQueryType DOMAIN
public static final SchemaQueryType RANGE
public static SchemaQueryType[] values()
for (SchemaQueryType c : SchemaQueryType.values()) System.out.println(c);
public static SchemaQueryType 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 © 2019. All rights reserved.