public enum Ordering
Verification ordering
| Enum Constant and Description |
|---|
ALL
Order is not important. All calls should happen
|
ORDERED
Order is important, but not all calls are checked
|
SEQUENCE
Order is important and all calls should be specified
|
UNORDERED
Order is not important. Some calls just should happen
|
public static Ordering UNORDERED
Order is not important. Some calls just should happen
public static Ordering ALL
Order is not important. All calls should happen
public static Ordering ORDERED
Order is important, but not all calls are checked
public static Ordering SEQUENCE
Order is important and all calls should be specified