public static enum Parameter.Type extends Enum<Parameter.Type>
| Enum Constant and Description |
|---|
Array |
Boolean |
ByteArray |
Integer |
InteropInterface |
Main |
String |
Struct |
Void |
| Modifier and Type | Method and Description |
|---|---|
static Parameter.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Parameter.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Parameter.Type ByteArray
public static final Parameter.Type String
public static final Parameter.Type Boolean
public static final Parameter.Type Integer
public static final Parameter.Type Array
public static final Parameter.Type InteropInterface
public static final Parameter.Type Void
public static final Parameter.Type Main
public static final Parameter.Type Struct
public static Parameter.Type[] values()
for (Parameter.Type c : Parameter.Type.values()) System.out.println(c);
public static Parameter.Type 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. All rights reserved.