Package com.ibm.fhir.path
Class ClassInfoElement
- java.lang.Object
-
- com.ibm.fhir.path.ClassInfoElement
-
public class ClassInfoElement extends Object
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 ClassInfoElement(String name, String type)
ClassInfoElement(String name, String type, Boolean oneBased)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object obj)
String
getName()
The name of this ClassInfoElementString
getType()
The type of this ClassInfoElementint
hashCode()
Boolean
isOneBased()
Indicates whether this ClassInfoElement is one-basedString
toString()
-
-
-
Method Detail
-
getName
public String getName()
The name of this ClassInfoElement- Returns:
- the name of this ClassInfoElement
-
getType
public 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
-
-