Package com.ibm.fhir.path
Class ClassInfo
- java.lang.Object
 - 
- com.ibm.fhir.path.ClassInfo
 
 
- 
- All Implemented Interfaces:
 TypeInfo
public class ClassInfo extends 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
 
 
- 
- 
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(Object obj)StringgetBaseType()The base type of this ClassInfoList<ClassInfoElement>getElement()The list of elements that are part of this ClassInfoStringgetName()The name of this TypeInfoStringgetNamespace()The namespace of this TypeInfointhashCode()StringtoString() 
 - 
 
- 
- 
Constructor Detail
- 
ClassInfo
public ClassInfo(String namespace, String name, String baseType, List<ClassInfoElement> element)
 
 - 
 
- 
Method Detail
- 
getNamespace
public String getNamespace()
Description copied from interface:TypeInfoThe namespace of this TypeInfo- Specified by:
 getNamespacein interfaceTypeInfo- Returns:
 - the namespace of this TypeInfo
 
 
- 
getName
public String getName()
Description copied from interface:TypeInfoThe name of this TypeInfo 
- 
getBaseType
public final String getBaseType()
The base type of this ClassInfo- Returns:
 - the base type of this ClassInfo
 
 
- 
getElement
public List<ClassInfoElement> getElement()
The list of elements that are part of this ClassInfo- Returns:
 - the list of elements that are part of this ClassInfo
 
 
 - 
 
 -