public static enum License.DeploymentScope extends Enum<License.DeploymentScope>
This enum represents the logical entity associated with a license, determining the scope and restrictions of the deployment environment where the license is valid.
Future Evolution: If stricter segregation is needed between CP and CP for CC deployments, dedicated TRIAL and DEV licenses can be created specifically for CP_FOR_CC scope.
| Modifier and Type | Method and Description |
|---|---|
static License.DeploymentScope |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static License.DeploymentScope[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final License.DeploymentScope CP
public static final License.DeploymentScope CP_FOR_CC
public static License.DeploymentScope[] values()
for (License.DeploymentScope c : License.DeploymentScope.values()) System.out.println(c);
public static License.DeploymentScope valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is null