Package org.linuxforhealth.fhir.path
Class ClassInfoElement
- java.lang.Object
-
- org.linuxforhealth.fhir.path.ClassInfoElement
-
public class ClassInfoElement extends java.lang.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(java.lang.String name, java.lang.String type, boolean oneBased)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(java.lang.Object obj)
java.lang.String
getName()
The name of this ClassInfoElementjava.lang.String
getType()
The type of this ClassInfoElementint
hashCode()
boolean
isOneBased()
Indicates whether this ClassInfoElement is one-basedjava.lang.String
toString()
-
-
-
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:
equals
in classjava.lang.Object
-
hashCode
public int hashCode()
- Overrides:
hashCode
in classjava.lang.Object
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Object
-
-