Package com.complexible.stardog
Class Schemas
- java.lang.Object
-
- com.complexible.stardog.Schemas
-
public final class Schemas extends java.lang.Object
Convenience functions and constants for reasoning schemas.- Author:
- Evren Sirin
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.String
DEFAULT
Constant empty string that is used to indicate that the default schema will be used for answering queries.static java.lang.String
NULL
Constantnull
that is used to indicate that no schema will be used for a query.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static boolean
isDefault(java.lang.String theSchema)
Return whether the schema name represents thedefault schema
-
-
-
Field Detail
-
DEFAULT
public static final java.lang.String DEFAULT
Constant empty string that is used to indicate that the default schema will be used for answering queries.- See Also:
- Constant Field Values
-
NULL
public static final java.lang.String NULL
Constantnull
that is used to indicate that no schema will be used for a query. This is equivalent to disabling reasoning
-
-
Method Detail
-
isDefault
public static boolean isDefault(java.lang.String theSchema)
Return whether the schema name represents thedefault schema
- Parameters:
theSchema
- the schema- Returns:
true
if it is thedefault schema
,false
otherwise
-
-