Package gda.jython
Enum Class ScriptProjectType
- All Implemented Interfaces:
Serializable,Comparable<ScriptProjectType>,Constable
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionScripts used to implement beamline functionality.Scripts provided with GDA plugins.Scripts that should not be shown in the PyDev Project Explorer, such as gdaserver.py which is used to provide imports/autocomplete, but should not be seen or edited.Scripts edited by users -
Method Summary
Modifier and TypeMethodDescriptionstatic ScriptProjectTypeReturns the enum constant of this class with the specified name.static ScriptProjectType[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
USER
Scripts edited by users -
CONFIG
Scripts used to implement beamline functionality. Not user editable -
CORE
Scripts provided with GDA plugins. Not user editable -
HIDDEN
Scripts that should not be shown in the PyDev Project Explorer, such as gdaserver.py which is used to provide imports/autocomplete, but should not be seen or edited.
-
-
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
-