| Modifier and Type | Method and Description |
|---|---|
static ProgramName |
ProgramName.valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ProgramName[] |
ProgramName.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
| Modifier and Type | Method and Description |
|---|---|
double |
AcrComm.get(ProgramName program,
LocalDouble locdouble)
Gets from the controller the value of a double-float local scalar variable
for a given program.
|
double[] |
AcrComm.get(ProgramName program,
LocalDoubleArray ldarray)
Gets from the controller all the elements of a double-float local array variable
for a given program.
|
long |
AcrComm.get(ProgramName program,
LocalLong loclong)
Gets from the controller the value of a local long scalar variable for a given program.
|
long[] |
AcrComm.get(ProgramName program,
LocalLongArray llarray)
Gets from the controller all the elements of a local long array for a given
program.
|
double |
AcrComm.get(ProgramName program,
LocalSingle locsingle)
Gets from the controller the value of a single-float local scalar variable for a given
program.
|
double[] |
AcrComm.get(ProgramName program,
LocalSingleArray lsarray)
Gets from the controller the values of a single-float local array for a given program.
|
String |
AcrComm.get(ProgramName program,
LocalString locstring)
Gets from the controller the value of a local ASCII string scalar variable for a given
program.
|
String[] |
AcrComm.get(ProgramName program,
LocalStringArray lstrarray)
Gets from the controller the values of a local string array for a given program.
|
boolean |
AcrComm.get(ProgramName program,
ProgramBit progbit)
Gets from the controller an program bit's state for a given program.
|
long |
AcrComm.get(ProgramName program,
ProgramUnsigned progunsigned)
Gets from the controller a 32-bit unsigned program-related parameter.
|
int |
ProgramUnsigned.index(ProgramName program)
Gets the controller's index number for the parameter for a given program.
|
int |
ProgramBit.index(ProgramName program)
Gets the motor controller's index for the bit for the given program.
|
String |
ProgramUnsigned.reference(ProgramName program)
Gets the string used to refer to the parameter in AcroBasic, given the program.
|
String |
ProgramBit.reference(ProgramName program)
Gets the string used to refer to the bit for the given program in AcroBasic.
|
void |
AcrComm.set(ProgramName program,
LocalDoubleArray ldarray,
double[] value)
Sets the value of a double array local to a controller program.
|
void |
AcrComm.set(ProgramName program,
LocalDouble locdouble,
double value)
Sets the value of double scalar local to a controller program.
|
void |
AcrComm.set(ProgramName program,
LocalLongArray llarray,
long[] value)
Sets the values of a long (signed 32-bit) array local to a controller program.
|
void |
AcrComm.set(ProgramName program,
LocalLong loclong,
long value)
Sets the value of a long (signed 32-bit) scalar local to a controller program.
|
void |
AcrComm.set(ProgramName program,
LocalSingleArray lsarray,
double[] value)
Sets the values of a single-float array local to a controller program.
|
void |
AcrComm.set(ProgramName program,
LocalSingle locsingle,
double value)
Sets the value of a single-float scalar local to a controller program.
|
void |
AcrComm.set(ProgramName program,
LocalStringArray lstrarray,
String[] value)
Sets the value of a string array local to a controller program.
|
void |
AcrComm.set(ProgramName program,
LocalString locstring,
String value)
Sets the value of a string scalar local to a controller program.
|
Copyright © 2017 LSST. All rights reserved.