Package org.apache.sysds.parser
Enum Expression.DataOp
- java.lang.Object
- 
- java.lang.Enum<Expression.DataOp>
- 
- org.apache.sysds.parser.Expression.DataOp
 
 
- 
- All Implemented Interfaces:
- Serializable,- Comparable<Expression.DataOp>
 - Enclosing class:
- Expression
 
 public static enum Expression.DataOp extends Enum<Expression.DataOp> Data operators.
- 
- 
Method SummaryAll Methods Static Methods Concrete Methods Modifier and Type Method Description static Expression.DataOpvalueOf(String name)Returns the enum constant of this type with the specified name.static Expression.DataOp[]values()Returns an array containing the constants of this enum type, in the order they are declared.
 
- 
- 
- 
Enum Constant Detail- 
READpublic static final Expression.DataOp READ 
 - 
WRITEpublic static final Expression.DataOp WRITE 
 - 
RANDpublic static final Expression.DataOp RAND 
 - 
MATRIXpublic static final Expression.DataOp MATRIX 
 - 
FRAMEpublic static final Expression.DataOp FRAME 
 - 
TENSORpublic static final Expression.DataOp TENSOR 
 - 
SQLpublic static final Expression.DataOp SQL 
 - 
FEDERATEDpublic static final Expression.DataOp FEDERATED 
 
- 
 - 
Method Detail- 
valuespublic static Expression.DataOp[] values() Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (Expression.DataOp c : Expression.DataOp.values()) System.out.println(c); - Returns:
- an array containing the constants of this enum type, in the order they are declared
 
 - 
valueOfpublic static Expression.DataOp valueOf(String name) Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
- name- the name of the enum constant to be returned.
- Returns:
- the enum constant with the specified name
- Throws:
- IllegalArgumentException- if this enum type has no constant with the specified name
- NullPointerException- if the argument is null
 
 
- 
 
-