Package com.ibm.fhir.path
Class TupleTypeInfo
- java.lang.Object
-
- com.ibm.fhir.path.TupleTypeInfo
-
- All Implemented Interfaces:
TypeInfo
public class TupleTypeInfo extends java.lang.Object implements TypeInfo
This 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 TupleTypeInfo(java.util.List<TupleTypeInfoElement> element)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(java.lang.Object obj)
Indicates whether this TupleTypeInfo is equal to the parameterjava.util.List<TupleTypeInfoElement>
getElement()
The list ofTupleTypeInfoElement
elements of this TupleTypeInfoint
hashCode()
java.lang.String
toString()
-
Methods inherited from interface com.ibm.fhir.path.TypeInfo
getName, getNamespace
-
-
-
-
Constructor Detail
-
TupleTypeInfo
public TupleTypeInfo(java.util.List<TupleTypeInfoElement> element)
-
-
Method Detail
-
getElement
public java.util.List<TupleTypeInfoElement> getElement()
The list ofTupleTypeInfoElement
elements of this TupleTypeInfo- Returns:
- the list of
TupleTypeInfoElement
elements for this TupleTypeInfo
-
equals
public boolean equals(java.lang.Object obj)
Indicates whether this TupleTypeInfo is equal to the parameter- Overrides:
equals
in classjava.lang.Object
- Parameters:
obj
- the otherObject
- Returns:
- true if TupleTypeInfo is equal to the parameter, otherwise false
-
hashCode
public int hashCode()
- Overrides:
hashCode
in classjava.lang.Object
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Object
-
-