public enum TestCases extends Enum<TestCases>
| Modifier and Type | Method and Description |
|---|---|
String |
description()
Returns a description of the test case.
|
static TestCases |
fromString(String s)
Returns the
TestCases matching the string s. |
static TestCases |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TestCases[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TestCases EMPTY_UNARY
public static final TestCases CACHEABLE_UNARY
public static final TestCases LARGE_UNARY
public static final TestCases CLIENT_COMPRESSED_UNARY
public static final TestCases CLIENT_COMPRESSED_UNARY_NOPROBE
public static final TestCases SERVER_COMPRESSED_UNARY
public static final TestCases CLIENT_STREAMING
public static final TestCases CLIENT_COMPRESSED_STREAMING
public static final TestCases CLIENT_COMPRESSED_STREAMING_NOPROBE
public static final TestCases SERVER_STREAMING
public static final TestCases SERVER_COMPRESSED_STREAMING
public static final TestCases PING_PONG
public static final TestCases EMPTY_STREAM
public static final TestCases COMPUTE_ENGINE_CREDS
public static final TestCases COMPUTE_ENGINE_CHANNEL_CREDENTIALS
public static final TestCases SERVICE_ACCOUNT_CREDS
public static final TestCases JWT_TOKEN_CREDS
public static final TestCases OAUTH2_AUTH_TOKEN
public static final TestCases PER_RPC_CREDS
public static final TestCases GOOGLE_DEFAULT_CREDENTIALS
public static final TestCases CUSTOM_METADATA
public static final TestCases STATUS_CODE_AND_MESSAGE
public static final TestCases SPECIAL_STATUS_MESSAGE
public static final TestCases UNIMPLEMENTED_METHOD
public static final TestCases UNIMPLEMENTED_SERVICE
public static final TestCases CANCEL_AFTER_BEGIN
public static final TestCases CANCEL_AFTER_FIRST_RESPONSE
public static final TestCases TIMEOUT_ON_SLEEPING_SERVER
public static final TestCases VERY_LARGE_REQUEST
public static final TestCases PICK_FIRST_UNARY
public static TestCases[] values()
for (TestCases c : TestCases.values()) System.out.println(c);
public static TestCases 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 String description()