public static enum VirtualizeAction.ResourceCondition extends java.lang.Enum<VirtualizeAction.ResourceCondition>
Enum Constant and Description |
---|
NATIVE_ONLY_EXISTING_RESOURCE
The resource with a given path is available only in the native service and was
not chosen during virtualization for the virtual service.
|
NATIVE_ONLY_RESOURCE_CREATED_SINCE_VIRTUAL
The resource with a given path is available only in the native service and was
newly created in the native service after the virtual service was created.
|
NATIVE_VIRTUAL_RESOURCE_MODIFIED_SINCE_CREATION
The resource with a given path is available in both the native and virtual APIs
but it has been modified in the native service after it has been virtualized.
|
NATIVE_VIRTUAL_SYNCED_RESOURCE
The resource with a given path is available in both the native and virtual APIs.
|
VIRTUAL_ONLY_RESOURCE
The resource with a given path is available only in the virtual service.
|
Modifier and Type | Method and Description |
---|---|
static VirtualizeAction.ResourceCondition |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static VirtualizeAction.ResourceCondition[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final VirtualizeAction.ResourceCondition NATIVE_VIRTUAL_SYNCED_RESOURCE
public static final VirtualizeAction.ResourceCondition NATIVE_VIRTUAL_RESOURCE_MODIFIED_SINCE_CREATION
public static final VirtualizeAction.ResourceCondition NATIVE_ONLY_EXISTING_RESOURCE
public static final VirtualizeAction.ResourceCondition NATIVE_ONLY_RESOURCE_CREATED_SINCE_VIRTUAL
public static final VirtualizeAction.ResourceCondition VIRTUAL_ONLY_RESOURCE
public static VirtualizeAction.ResourceCondition[] values()
for (VirtualizeAction.ResourceCondition c : VirtualizeAction.ResourceCondition.values()) System.out.println(c);
public static VirtualizeAction.ResourceCondition valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null