public static enum UserCodeDeploymentConfig.ProviderMode extends Enum<UserCodeDeploymentConfig.ProviderMode>
Enum Constant and Description |
---|
LOCAL_AND_CACHED_CLASSES
Serve classes loaded from both local classpath and from other members.
|
LOCAL_CLASSES_ONLY
Serve classes from local classpath only.
|
OFF
Never serve classes to other members.
|
Modifier and Type | Method and Description |
---|---|
static UserCodeDeploymentConfig.ProviderMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static UserCodeDeploymentConfig.ProviderMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final UserCodeDeploymentConfig.ProviderMode OFF
public static final UserCodeDeploymentConfig.ProviderMode LOCAL_CLASSES_ONLY
public static final UserCodeDeploymentConfig.ProviderMode LOCAL_AND_CACHED_CLASSES
public static UserCodeDeploymentConfig.ProviderMode[] values()
for (UserCodeDeploymentConfig.ProviderMode c : UserCodeDeploymentConfig.ProviderMode.values()) System.out.println(c);
public static UserCodeDeploymentConfig.ProviderMode 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 nullCopyright © 2022 Hazelcast, Inc.. All rights reserved.