public enum ProgramUnsigned extends Enum<ProgramUnsigned>
| Enum Constant and Description |
|---|
PROGRAM_FLAGS
Reflects the current state of program execution.
|
PROGRAM_LINE_NUMBER
The line number of the current line being executed or the last line that was executed
before the program stopped.
|
| Modifier and Type | Method and Description |
|---|---|
int |
index(ProgramName program)
Gets the controller's index number for the parameter for a given program.
|
String |
reference(ProgramName program)
Gets the string used to refer to the parameter in AcroBasic, given the program.
|
static ProgramUnsigned |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ProgramUnsigned[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ProgramUnsigned PROGRAM_FLAGS
public static final ProgramUnsigned PROGRAM_LINE_NUMBER
public static ProgramUnsigned[] values()
for (ProgramUnsigned c : ProgramUnsigned.values()) System.out.println(c);
public static ProgramUnsigned 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 int index(ProgramName program)
program - the program.public String reference(ProgramName program)
program - the program.Copyright © 2017 LSST. All rights reserved.