public static enum Expression.DataOp extends Enum<Expression.DataOp>
Enum Constant and Description |
---|
FEDERATED |
MATRIX |
RAND |
READ |
SQL |
TENSOR |
WRITE |
Modifier and Type | Method and Description |
---|---|
static Expression.DataOp |
valueOf(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.
|
public static final Expression.DataOp READ
public static final Expression.DataOp WRITE
public static final Expression.DataOp RAND
public static final Expression.DataOp MATRIX
public static final Expression.DataOp TENSOR
public static final Expression.DataOp SQL
public static final Expression.DataOp FEDERATED
public static Expression.DataOp[] values()
for (Expression.DataOp c : Expression.DataOp.values()) System.out.println(c);
public static Expression.DataOp valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2020 The Apache Software Foundation. All rights reserved.