Package com.sforce.ws.codegen
Enum ConnectionMetadataConstructor.ArgListTypesToGenerate
- java.lang.Object
-
- java.lang.Enum<ConnectionMetadataConstructor.ArgListTypesToGenerate>
-
- com.sforce.ws.codegen.ConnectionMetadataConstructor.ArgListTypesToGenerate
-
- All Implemented Interfaces:
Serializable,Comparable<ConnectionMetadataConstructor.ArgListTypesToGenerate>
- Enclosing class:
- ConnectionMetadataConstructor
protected static enum ConnectionMetadataConstructor.ArgListTypesToGenerate extends Enum<ConnectionMetadataConstructor.ArgListTypesToGenerate>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CAST_TO_CLASSESCLASSESINTERFACENONE
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ConnectionMetadataConstructor.ArgListTypesToGeneratevalueOf(String name)Returns the enum constant of this type with the specified name.static ConnectionMetadataConstructor.ArgListTypesToGenerate[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NONE
public static final ConnectionMetadataConstructor.ArgListTypesToGenerate NONE
-
CLASSES
public static final ConnectionMetadataConstructor.ArgListTypesToGenerate CLASSES
-
INTERFACE
public static final ConnectionMetadataConstructor.ArgListTypesToGenerate INTERFACE
-
CAST_TO_CLASSES
public static final ConnectionMetadataConstructor.ArgListTypesToGenerate CAST_TO_CLASSES
-
-
Method Detail
-
values
public static ConnectionMetadataConstructor.ArgListTypesToGenerate[] 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 (ConnectionMetadataConstructor.ArgListTypesToGenerate c : ConnectionMetadataConstructor.ArgListTypesToGenerate.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ConnectionMetadataConstructor.ArgListTypesToGenerate valueOf(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:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
-