public enum TCK extends Enum<TCK>
TCK singleton is the main entry point for standalone TCK execution.| Enum Constant and Description |
|---|
INSTANCE
Singleton instance.
|
| Modifier and Type | Method and Description |
|---|---|
List<org.json.JSONObject> |
getTestDefinitions()
Reads the embedded test definition files and provides a list of
JSONObject. |
static void |
main(String[] args) |
static TCK |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TCK[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TCK INSTANCE
public static TCK[] values()
for (TCK c : TCK.values()) System.out.println(c);
public static TCK 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 nullpublic List<org.json.JSONObject> getTestDefinitions()
JSONObject.public static void main(String[] args)
Copyright © 2020. All rights reserved.