Enum Comet3Statement.ScriptSubject
- java.lang.Object
-
- java.lang.Enum<Comet3Statement.ScriptSubject>
-
- com.priint.pubserver.comet.bridge.statement.Comet3Statement.ScriptSubject
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<Comet3Statement.ScriptSubject>
- Enclosing class:
- Comet3Statement
public static enum Comet3Statement.ScriptSubject extends java.lang.Enum<Comet3Statement.ScriptSubject>
The Enum ScriptSubject.
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetJavaMethodName()Gets the java method name.static Comet3Statement.ScriptSubjectvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static Comet3Statement.ScriptSubject[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
UNKOWN
public static final Comet3Statement.ScriptSubject UNKOWN
The unkown.
-
GET
public static final Comet3Statement.ScriptSubject GET
The get.
-
SET
public static final Comet3Statement.ScriptSubject SET
The set.
-
SYNC
public static final Comet3Statement.ScriptSubject SYNC
The sync.
-
-
Method Detail
-
values
public static Comet3Statement.ScriptSubject[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (Comet3Statement.ScriptSubject c : Comet3Statement.ScriptSubject.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Comet3Statement.ScriptSubject valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
getJavaMethodName
public java.lang.String getJavaMethodName()
Gets the java method name.- Returns:
- the java method name
-
-