Package com.redwood.agent.api.rtx
Class RTXColumn<T>
- java.lang.Object
- 
- com.redwood.agent.api.rtx.RTXColumn<T>
 
- 
- Type Parameters:
- T- the column's Java Type.
 - All Implemented Interfaces:
- Serializable
 
 public class RTXColumn<T> extends Object implements Serializable Definition of a column, you should create columns throughRTXWriterorRTXMetadatarather than doing so through theRTXColumn(String, RTXType)constructor.- See Also:
- Serialized Form
 
- 
- 
Field SummaryFields Modifier and Type Field Description protected RTXMetadatametadata
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description voidassertColumnsCompatible(RTXColumn anotherColumn)StringgetDescription()intgetIndex()RTXMetadatagetMetadata()StringgetName()RTXTypegetType()booleanisReadOnly()voidsetDescription(String newValue)voidsetName(String newValue)voidsetType(RTXType newValue)StringtoString()
 
- 
- 
- 
Field Detail- 
metadataprotected RTXMetadata metadata 
 
- 
 - 
Method Detail- 
getNamepublic String getName() 
 - 
getDescriptionpublic String getDescription() 
 - 
getTypepublic RTXType getType() 
 - 
getIndexpublic int getIndex() 
 - 
setNamepublic void setName(String newValue) 
 - 
setDescriptionpublic void setDescription(String newValue) 
 - 
setTypepublic void setType(RTXType newValue) 
 - 
assertColumnsCompatiblepublic void assertColumnsCompatible(RTXColumn anotherColumn) throws RTXIncompatibleColumnException - Throws:
- RTXIncompatibleColumnException
 
 - 
getMetadatapublic RTXMetadata getMetadata() 
 - 
isReadOnlypublic boolean isReadOnly() 
 
- 
 
-