Package org.apache.sysds.api.mlcontext
Class FrameSchema
- java.lang.Object
- 
- org.apache.sysds.api.mlcontext.FrameSchema
 
- 
 public class FrameSchema extends Object The frame schema, stored as a list ofValueTypevalues.
- 
- 
Constructor SummaryConstructors Constructor Description FrameSchema()FrameSchema(String schema)Constructor that specifies the schema as a comma-separated string.FrameSchema(List<Types.ValueType> schema)Constructor that specifies the schema as a list ofValueTypevalues.
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description List<Types.ValueType>getSchema()Obtain the frame schemaStringgetSchemaAsString()Obtain the schema as a comma-separated stringvoidsetSchema(List<Types.ValueType> schema)Set the frame schemavoidsetSchemaAsString(String schema)Set the frame schema, specifying the frame schema as a comma-separated string
 
- 
- 
- 
Constructor Detail- 
FrameSchemapublic FrameSchema() 
 - 
FrameSchemapublic FrameSchema(List<Types.ValueType> schema) Constructor that specifies the schema as a list ofValueTypevalues.- Parameters:
- schema- the frame schema
 
 - 
FrameSchemapublic FrameSchema(String schema) Constructor that specifies the schema as a comma-separated string.- Parameters:
- schema- the frame schema as a string
 
 
- 
 - 
Method Detail- 
getSchemapublic List<Types.ValueType> getSchema() Obtain the frame schema- Returns:
- the frame schema as a list of ValueTypevalues
 
 - 
setSchemapublic void setSchema(List<Types.ValueType> schema) Set the frame schema- Parameters:
- schema- the frame schema
 
 - 
setSchemaAsStringpublic void setSchemaAsString(String schema) Set the frame schema, specifying the frame schema as a comma-separated string- Parameters:
- schema- the frame schema as a string
 
 - 
getSchemaAsStringpublic String getSchemaAsString() Obtain the schema as a comma-separated string- Returns:
- the frame schema as a string
 
 
- 
 
-