Enum Class CScriptStubGenerationUtils.StubGenerationStyle
java.lang.Object
java.lang.Enum<CScriptStubGenerationUtils.StubGenerationStyle>
com.priint.pubserver.comet.bridge.cscript.CScriptStubGenerationUtils.StubGenerationStyle
- All Implemented Interfaces:
Serializable,Comparable<CScriptStubGenerationUtils.StubGenerationStyle>,Constable
- Enclosing class:
- CScriptStubGenerationUtils
public static enum CScriptStubGenerationUtils.StubGenerationStyle
extends Enum<CScriptStubGenerationUtils.StubGenerationStyle>
The enum Stub generation style.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionCompact stub generation style.Skeleton for cscript client codeDefault stub generation style.Header stub generation style.Python moduleSkeleton for Python client code -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this class with the specified name.values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
DEFAULT
Default stub generation style. -
COMPACT
Compact stub generation style. -
HEADER
Header stub generation style. -
PYTHON
Python module -
CSCRIPT_SKELETON
Skeleton for cscript client code -
PYTHON_SKELETON
Skeleton for Python client code
-
-
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
-