public static enum Instruction.IType extends Enum<Instruction.IType>
| Enum Constant and Description | 
|---|
| BREAKPOINT | 
| CONTROL_PROGRAM | 
| FEDERATED | 
| GPU | 
| SPARK | 
| Modifier and Type | Method and Description | 
|---|---|
| static Instruction.IType | valueOf(String name)Returns the enum constant of this type with the specified name. | 
| static Instruction.IType[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final Instruction.IType CONTROL_PROGRAM
public static final Instruction.IType BREAKPOINT
public static final Instruction.IType SPARK
public static final Instruction.IType GPU
public static final Instruction.IType FEDERATED
public static Instruction.IType[] values()
for (Instruction.IType c : Instruction.IType.values()) System.out.println(c);
public static Instruction.IType 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.