Enum TestCases

  • All Implemented Interfaces:
    java.io.Serializable, java.lang.Comparable<TestCases>

    public enum TestCases
    extends java.lang.Enum<TestCases>
    Enum of interop test cases.
    • Enum Constant Detail

      • EMPTY_UNARY

        public static final TestCases EMPTY_UNARY
      • CACHEABLE_UNARY

        public static final TestCases CACHEABLE_UNARY
      • LARGE_UNARY

        public static final TestCases LARGE_UNARY
      • CLIENT_COMPRESSED_UNARY

        public static final TestCases CLIENT_COMPRESSED_UNARY
      • CLIENT_COMPRESSED_UNARY_NOPROBE

        public static final TestCases CLIENT_COMPRESSED_UNARY_NOPROBE
      • SERVER_COMPRESSED_UNARY

        public static final TestCases SERVER_COMPRESSED_UNARY
      • CLIENT_STREAMING

        public static final TestCases CLIENT_STREAMING
      • CLIENT_COMPRESSED_STREAMING

        public static final TestCases CLIENT_COMPRESSED_STREAMING
      • CLIENT_COMPRESSED_STREAMING_NOPROBE

        public static final TestCases CLIENT_COMPRESSED_STREAMING_NOPROBE
      • SERVER_STREAMING

        public static final TestCases SERVER_STREAMING
      • SERVER_COMPRESSED_STREAMING

        public static final TestCases SERVER_COMPRESSED_STREAMING
      • PING_PONG

        public static final TestCases PING_PONG
      • EMPTY_STREAM

        public static final TestCases EMPTY_STREAM
      • COMPUTE_ENGINE_CREDS

        public static final TestCases COMPUTE_ENGINE_CREDS
      • COMPUTE_ENGINE_CHANNEL_CREDENTIALS

        public static final TestCases COMPUTE_ENGINE_CHANNEL_CREDENTIALS
      • SERVICE_ACCOUNT_CREDS

        public static final TestCases SERVICE_ACCOUNT_CREDS
      • JWT_TOKEN_CREDS

        public static final TestCases JWT_TOKEN_CREDS
      • OAUTH2_AUTH_TOKEN

        public static final TestCases OAUTH2_AUTH_TOKEN
      • PER_RPC_CREDS

        public static final TestCases PER_RPC_CREDS
      • GOOGLE_DEFAULT_CREDENTIALS

        public static final TestCases GOOGLE_DEFAULT_CREDENTIALS
      • CUSTOM_METADATA

        public static final TestCases CUSTOM_METADATA
      • STATUS_CODE_AND_MESSAGE

        public static final TestCases STATUS_CODE_AND_MESSAGE
      • SPECIAL_STATUS_MESSAGE

        public static final TestCases SPECIAL_STATUS_MESSAGE
      • UNIMPLEMENTED_METHOD

        public static final TestCases UNIMPLEMENTED_METHOD
      • UNIMPLEMENTED_SERVICE

        public static final TestCases UNIMPLEMENTED_SERVICE
      • CANCEL_AFTER_BEGIN

        public static final TestCases CANCEL_AFTER_BEGIN
      • CANCEL_AFTER_FIRST_RESPONSE

        public static final TestCases CANCEL_AFTER_FIRST_RESPONSE
      • TIMEOUT_ON_SLEEPING_SERVER

        public static final TestCases TIMEOUT_ON_SLEEPING_SERVER
      • VERY_LARGE_REQUEST

        public static final TestCases VERY_LARGE_REQUEST
      • PICK_FIRST_UNARY

        public static final TestCases PICK_FIRST_UNARY
      • RPC_SOAK

        public static final TestCases RPC_SOAK
      • CHANNEL_SOAK

        public static final TestCases CHANNEL_SOAK
      • ORCA_PER_RPC

        public static final TestCases ORCA_PER_RPC
      • ORCA_OOB

        public static final TestCases ORCA_OOB
    • Method Detail

      • values

        public static TestCases[] values()
        Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
        for (TestCases c : TestCases.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static TestCases valueOf​(java.lang.String name)
        Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
        Parameters:
        name - the name of the enum constant to be returned.
        Returns:
        the enum constant with the specified name
        Throws:
        java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
        java.lang.NullPointerException - if the argument is null
      • description

        public java.lang.String description()
        Returns a description of the test case.
      • fromString

        public static TestCases fromString​(java.lang.String s)
        Returns the TestCases matching the string s. The matching is done case insensitive.