public static enum UserCodeDeploymentConfig.ProviderMode extends Enum<UserCodeDeploymentConfig.ProviderMode>
| Enum Constant and Description | 
|---|
| LOCAL_AND_CACHED_CLASSESServe classes loaded from both local classpath and from other members. | 
| LOCAL_CLASSES_ONLYServe classes from local classpath only. | 
| OFFNever 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 © 2020 Hazelcast, Inc.. All rights reserved.