Package info.mikethomas.jfold.util
Enum Class Command
- All Implemented Interfaces:
Serializable
,Comparable<Command>
,Constable
Command class.
- Version:
- 7.6.21
- Author:
- Michael Thomas (mikepthomas@outlook.com)
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionAdd two values.Authenticate.Bond a packet file to a outgoing debug socket connection.Clear the screen.Return a PyON message indicating if the client has set a user, team or passkey.Print the date and time.Divide two values.Run one client cycle.Deprecated.Command no longer supported.Error message.Evaluate all arguments.Exit the command processor.Finish all or one slot(s).Print application information.Prints an increasing heartbeat count.If 'cond' evaluates to a non-empty string then evalute 'expr1' otherwise, if provided, evaluate 'expr2'.Print application information in PyON format.Inject a packet file to a listening debug socket.Enable/disable log updates.Disable specified unit states.Multiply two values.Invert the truth value of the argument.Get number of slots in PyON format.Get or set a configuration option.List or set options with their values.Pause all or one slot(s).Get current total estimated Points Per Day.Get work unit queue information in PyON format.Exit the command processor.Request an ID from the assignment server.Request work server assignment from the assignment server.Save the configuration either to the specified file or to the file the configuration was last loaded from.Unpause all slots which are paused waiting for a screensaver and pause them again on disconnect.Shutdown the application.Get current simulation information.Sleep for a number of seconds.Add a new slot.Delete a slot.Get slot information in PyON format.Modify an existing slot.The first argument is the slot ID.Subtract two values.Get current protein trajectory.Trigger config save after a delay.Unpause all or one slot(s).Enable/disable updates.Print application uptime.Wait for all running units to finish. -
Method Summary
Methods inherited from class java.lang.Enum
compareTo, describeConstable, equals, getDeclaringClass, hashCode, name, ordinal, valueOf
-
Enum Constant Details
-
AUTH
Authenticate. -
ERROR
Error message. -
EXIT
Exit the command processor. -
HEARTBEAT
Prints an increasing heartbeat count. -
LOG_UPDATES
Enable/disable log updates. -
QUIT
Exit the command processor. -
SCREENSAVER
Unpause all slots which are paused waiting for a screensaver and pause them again on disconnect. -
UPDATES
Enable/disable updates. -
BOND
Bond a packet file to a outgoing debug socket connection. -
CONFIGURED
Return a PyON message indicating if the client has set a user, team or passkey. -
DO_CYCLE
Run one client cycle. -
DOWNLOAD_CORE
Deprecated.Command no longer supported.Download a core. -
FINISH
Finish all or one slot(s). -
GET_INFO
Print application information. -
INFO
Print application information in PyON format. -
INJECT
Inject a packet file to a listening debug socket. Will wait until packet is processed. -
MASK_UNIT_STATE
Disable specified unit states. -
NUM_SLOTS
Get number of slots in PyON format. -
OPTION
Get or set a configuration option. -
OPTIONS
List or set options with their values. If no name arguments are given then all options with non-default values will be listed. If the '-d' argument is given then even defaulted options will be listed. If the '-a' option is given then unset options will also be listed. Otherwise, if option names are provided only those options will be listed. The special name '*' lists all options which have not yet been listed and is affected by the '-d' and '-a' options. If a name argument is followed directly by an equal sign then the rest of the argument will be used to set the option's value. If instead a name argument is followed immediately by a '!' then the option will be reset to its default value. Options which are set or reset will also be listed. Options are listed as a PyON format dictionary. -
PAUSE
Pause all or one slot(s). -
PPD
Get current total estimated Points Per Day. -
QUEUE_INFO
Get work unit queue information in PyON format. -
REQUEST_ID
Request an ID from the assignment server. -
REQUEST_WS
Request work server assignment from the assignment server. -
SAVE
Save the configuration either to the specified file or to the file the configuration was last loaded from. -
SHUTDOWN
Shutdown the application. -
SIMULATION_INFO
Get current simulation information. -
SLOT_ADD
Add a new slot. Configuration options for the new slot can be provided. -
SLOT_DELETE
Delete a slot. If it is running a unit it will be stopped. -
SLOT_INFO
Get slot information in PyON format. -
SLOT_MODIFY
Modify an existing slot. Configuration options can be either set or reset using the same syntax used by the 'options' command. -
SLOT_OPTIONS
The first argument is the slot ID. See 'options' help for a description of the remaining arguments. -
TRAJECTORY
Get current protein trajectory. -
TRIGGER_SAVE
Trigger config save after a delay. -
UNPAUSE
Unpause all or one slot(s). -
UPTIME
Print application uptime. -
WAIT_FOR_UNITS
Wait for all running units to finish. -
ADD
Add two values. -
CLEAR
Clear the screen. -
DATE
Print the date and time. Optionally, with 'format'. See: man strftime -
DIV
Divide two values. -
EVAL
Evaluate all arguments. -
IF
If 'cond' evaluates to a non-empty string then evalute 'expr1' otherwise, if provided, evaluate 'expr2'. -
MUL
Multiply two values. -
NOT
Invert the truth value of the argument. -
SLEEP
Sleep for a number of seconds. -
SUB
Subtract two values.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum class has no constant with the specified nameNullPointerException
- if the argument is null
-
toString
-
getCommand
Command.- Returns:
- String Folding@Home command.
-
getResponseType
Response type of this command.- Returns:
- ResponseType type of response.
-