Class TupleTableInfo
java.lang.Object
tech.oxfordsemantic.jrdfox.client.TupleTableInfo
public class TupleTableInfo
extends java.lang.Object
Encapsulates information about a tuple table.
- 
Constructor SummaryConstructors Constructor Description TupleTableInfo(java.lang.String name, int id, long minArity, long maxArity, java.util.Map<java.lang.String,java.lang.String> parameters)
- 
Method SummaryModifier and Type Method Description booleanequals(java.lang.Object that)intgetID()Returns the ID of a tuple table.longgetMaxArity()Returns the maximum arity (i.e., the number of columns) of a tuple table.longgetMinArity()Returns the minimum arity (i.e., the number of columns) of a tuple table.java.lang.StringgetName()Returns the name of a tuple table.java.util.Map<java.lang.String,java.lang.String>getParameters()Returns the creation parameters of the tuple table.inthashCode()
- 
Constructor Details- 
TupleTableInfopublic TupleTableInfo(java.lang.String name, int id, long minArity, long maxArity, java.util.Map<java.lang.String,java.lang.String> parameters)
 
- 
- 
Method Details- 
getNamepublic java.lang.String getName()Returns the name of a tuple table.- Returns:
- the name of a tuple table
 
- 
getIDpublic int getID()Returns the ID of a tuple table. The ID of a tuple table is unique in a data store and is often used for more efficient identification of a tuple table.- Returns:
- the ID of a tuple table
 
- 
getMinAritypublic long getMinArity()Returns the minimum arity (i.e., the number of columns) of a tuple table.- Returns:
- the minimum arity of a tuple table
 
- 
getMaxAritypublic long getMaxArity()Returns the maximum arity (i.e., the number of columns) of a tuple table.- Returns:
- the maximumarity of a tuple table
 
- 
getParameterspublic java.util.Map<java.lang.String,java.lang.String> getParameters()Returns the creation parameters of the tuple table.- Returns:
- the parameters of the tuple table
 
- 
hashCodepublic int hashCode()- Overrides:
- hashCodein class- java.lang.Object
 
- 
equalspublic boolean equals(java.lang.Object that)- Overrides:
- equalsin class- java.lang.Object
 
 
-