public enum VirtualTimePolicy extends Enum<VirtualTimePolicy>
| Enum Constant and Description |
|---|
ADVANCE |
PAUSE |
PAUSE_IF_NETWORK_FETCHES_PENDING |
| Modifier and Type | Method and Description |
|---|---|
static VirtualTimePolicy |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static VirtualTimePolicy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final VirtualTimePolicy ADVANCE
public static final VirtualTimePolicy PAUSE
public static final VirtualTimePolicy PAUSE_IF_NETWORK_FETCHES_PENDING
public static VirtualTimePolicy[] values()
for (VirtualTimePolicy c : VirtualTimePolicy.values()) System.out.println(c);
public static VirtualTimePolicy 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. All rights reserved.