Class ColumnInfoDTO
- java.lang.Object
 - 
- com.microstrategy.web.tasks.models.dto.ColumnInfoDTO
 
 
- 
public class ColumnInfoDTO extends java.lang.Object 
- 
- 
Constructor Summary
Constructors Constructor Description ColumnInfoDTO() 
- 
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description DataTypeInfoDTOgetDataType()java.lang.StringgetName()voidread(JSONObject columnInfoJson)build the ColumnInfo from the JSONObject.voidsetDataType(DataTypeInfoDTO dataType)voidsetName(java.lang.String name) 
 - 
 
- 
- 
Method Detail
- 
getName
public java.lang.String getName()
 
- 
setName
public void setName(java.lang.String name)
 
- 
getDataType
public DataTypeInfoDTO getDataType()
 
- 
setDataType
public void setDataType(DataTypeInfoDTO dataType)
 
- 
read
public void read(JSONObject columnInfoJson) throws JSONException
build the ColumnInfo from the JSONObject.- Parameters:
 columnInfoJson- input json string containing the columnInfo- Throws:
 JSONException- throw if JSONException happens
 
 - 
 
 -