public static enum ValueDescr.Shape extends Enum<ValueDescr.Shape>
| Enum Constant and Description |
|---|
ANY
\brief Either Array or Scalar
|
ARRAY
\brief Array type
|
SCALAR
\brief Only Scalar arguments supported
|
| Modifier and Type | Field and Description |
|---|---|
int |
value |
| Modifier and Type | Method and Description |
|---|---|
ValueDescr.Shape |
intern() |
String |
toString() |
static ValueDescr.Shape |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ValueDescr.Shape[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ValueDescr.Shape ANY
public static final ValueDescr.Shape ARRAY
public static final ValueDescr.Shape SCALAR
public static ValueDescr.Shape[] values()
for (ValueDescr.Shape c : ValueDescr.Shape.values()) System.out.println(c);
public static ValueDescr.Shape 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 nullpublic ValueDescr.Shape intern()
public String toString()
toString in class Enum<ValueDescr.Shape>Copyright © 2021. All rights reserved.