Package com.ibm.fhir.path
Class TupleTypeInfoElement
- java.lang.Object
-
- com.ibm.fhir.path.TupleTypeInfoElement
-
public class TupleTypeInfoElement extends java.lang.ObjectThis class is part of the implementation for the Types and Reflection section of the FHIRPath specification:- See Also:
- FHIRPath Types and Reflection
-
-
Constructor Summary
Constructors Constructor Description TupleTypeInfoElement(java.lang.String name, java.lang.String type, boolean oneBased)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(java.lang.Object obj)Indicates whether this TupleTypeInfoElement is equal to the parameterjava.lang.StringgetName()The name of this TupleTypeInfoElementjava.lang.StringgetType()The type of this TupleTypeInfoElementbooleanisOneBased()Indicates whether this TupleTypeInfoElement is one-basedjava.lang.StringtoString()
-
-
-
Method Detail
-
getName
public java.lang.String getName()
The name of this TupleTypeInfoElement- Returns:
- the name of this TupleTypeInfoElement
-
getType
public java.lang.String getType()
The type of this TupleTypeInfoElement- Returns:
- the type of this TupleTypeInfoElement
-
isOneBased
public boolean isOneBased()
Indicates whether this TupleTypeInfoElement is one-based- Returns:
- true if this TupleTypeInfoElement is one-based, otherwise false
-
equals
public boolean equals(java.lang.Object obj)
Indicates whether this TupleTypeInfoElement is equal to the parameter- Overrides:
equalsin classjava.lang.Object- Parameters:
obj- the otherObject- Returns:
- true if TupleTypeInfoElement is equal to the parameter, otherwise false
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
-