Uses of Class
gov.ornl.csed.csiir.idr.kdd.dataservice.server.models.DataSetInformationResponse.DataType

Packages that use DataSetInformationResponse.DataType
gov.ornl.csed.csiir.idr.kdd.dataservice.server.models   
 

Uses of DataSetInformationResponse.DataType in gov.ornl.csed.csiir.idr.kdd.dataservice.server.models
 

Methods in gov.ornl.csed.csiir.idr.kdd.dataservice.server.models that return DataSetInformationResponse.DataType
 DataSetInformationResponse.DataType DataSetInformationResponse.getDataType()
          Retrieve the type of the data set.
static DataSetInformationResponse.DataType DataSetInformationResponse.DataType.valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static DataSetInformationResponse.DataType[] DataSetInformationResponse.DataType.values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 

Methods in gov.ornl.csed.csiir.idr.kdd.dataservice.server.models with parameters of type DataSetInformationResponse.DataType
 void DataSetInformationResponse.setDataType(DataSetInformationResponse.DataType dataType)
          Set the type for the data set.
 

Constructors in gov.ornl.csed.csiir.idr.kdd.dataservice.server.models with parameters of type DataSetInformationResponse.DataType
DataSetInformationResponse(java.lang.String id, java.lang.String name, java.lang.String description, long size, long recordCount, DataSetInformationResponse.DataType dataType, java.lang.String owner)