Package org.linuxforhealth.fhir.path
Class ClassInfoElement
- java.lang.Object
-
- org.linuxforhealth.fhir.path.ClassInfoElement
-
public class ClassInfoElement 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 ClassInfoElement(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)java.lang.StringgetName()The name of this ClassInfoElementjava.lang.StringgetType()The type of this ClassInfoElementinthashCode()booleanisOneBased()Indicates whether this ClassInfoElement is one-basedjava.lang.StringtoString()
-
-
-
Method Detail
-
getName
public java.lang.String getName()
The name of this ClassInfoElement- Returns:
- the name of this ClassInfoElement
-
getType
public java.lang.String getType()
The type of this ClassInfoElement- Returns:
- the type of this ClassInfoElement
-
isOneBased
public boolean isOneBased()
Indicates whether this ClassInfoElement is one-based- Returns:
- true if this ClassInfoElement is one-based, otherwise false
-
equals
public boolean equals(java.lang.Object obj)
- Overrides:
equalsin classjava.lang.Object
-
hashCode
public int hashCode()
- Overrides:
hashCodein classjava.lang.Object
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
-