Enum Messages.Message.MessageType

    • Field Detail

      • ExecutionStarting_VALUE

        public static final int ExecutionStarting_VALUE
        ExecutionStarting = 0;
        See Also:
        Constant Field Values
      • SpecExecutionStarting_VALUE

        public static final int SpecExecutionStarting_VALUE
        SpecExecutionStarting = 1;
        See Also:
        Constant Field Values
      • SpecExecutionEnding_VALUE

        public static final int SpecExecutionEnding_VALUE
        SpecExecutionEnding = 2;
        See Also:
        Constant Field Values
      • ScenarioExecutionStarting_VALUE

        public static final int ScenarioExecutionStarting_VALUE
        ScenarioExecutionStarting = 3;
        See Also:
        Constant Field Values
      • ScenarioExecutionEnding_VALUE

        public static final int ScenarioExecutionEnding_VALUE
        ScenarioExecutionEnding = 4;
        See Also:
        Constant Field Values
      • StepExecutionStarting_VALUE

        public static final int StepExecutionStarting_VALUE
        StepExecutionStarting = 5;
        See Also:
        Constant Field Values
      • StepExecutionEnding_VALUE

        public static final int StepExecutionEnding_VALUE
        StepExecutionEnding = 6;
        See Also:
        Constant Field Values
      • ExecuteStep_VALUE

        public static final int ExecuteStep_VALUE
        ExecuteStep = 7;
        See Also:
        Constant Field Values
      • ExecutionEnding_VALUE

        public static final int ExecutionEnding_VALUE
        ExecutionEnding = 8;
        See Also:
        Constant Field Values
      • StepValidateRequest_VALUE

        public static final int StepValidateRequest_VALUE
        StepValidateRequest = 9;
        See Also:
        Constant Field Values
      • StepValidateResponse_VALUE

        public static final int StepValidateResponse_VALUE
        StepValidateResponse = 10;
        See Also:
        Constant Field Values
      • ExecutionStatusResponse_VALUE

        public static final int ExecutionStatusResponse_VALUE
        ExecutionStatusResponse = 11;
        See Also:
        Constant Field Values
      • StepNamesRequest_VALUE

        public static final int StepNamesRequest_VALUE
        StepNamesRequest = 12;
        See Also:
        Constant Field Values
      • StepNamesResponse_VALUE

        public static final int StepNamesResponse_VALUE
        StepNamesResponse = 13;
        See Also:
        Constant Field Values
      • KillProcessRequest_VALUE

        public static final int KillProcessRequest_VALUE
        KillProcessRequest = 14;
        See Also:
        Constant Field Values
      • SuiteExecutionResult_VALUE

        public static final int SuiteExecutionResult_VALUE
        SuiteExecutionResult = 15;
        See Also:
        Constant Field Values
      • ScenarioDataStoreInit_VALUE

        public static final int ScenarioDataStoreInit_VALUE
        ScenarioDataStoreInit = 16;
        See Also:
        Constant Field Values
      • SpecDataStoreInit_VALUE

        public static final int SpecDataStoreInit_VALUE
        SpecDataStoreInit = 17;
        See Also:
        Constant Field Values
      • SuiteDataStoreInit_VALUE

        public static final int SuiteDataStoreInit_VALUE
        SuiteDataStoreInit = 18;
        See Also:
        Constant Field Values
      • StepNameRequest_VALUE

        public static final int StepNameRequest_VALUE
        StepNameRequest = 19;
        See Also:
        Constant Field Values
      • StepNameResponse_VALUE

        public static final int StepNameResponse_VALUE
        StepNameResponse = 20;
        See Also:
        Constant Field Values
      • RefactorRequest_VALUE

        public static final int RefactorRequest_VALUE
        RefactorRequest = 21;
        See Also:
        Constant Field Values
      • RefactorResponse_VALUE

        public static final int RefactorResponse_VALUE
        RefactorResponse = 22;
        See Also:
        Constant Field Values
      • UnsupportedMessageResponse_VALUE

        public static final int UnsupportedMessageResponse_VALUE
        UnsupportedMessageResponse = 23;
        See Also:
        Constant Field Values
      • CacheFileRequest_VALUE

        public static final int CacheFileRequest_VALUE
        CacheFileRequest = 24;
        See Also:
        Constant Field Values
      • StepPositionsRequest_VALUE

        public static final int StepPositionsRequest_VALUE
        StepPositionsRequest = 25;
        See Also:
        Constant Field Values
      • StepPositionsResponse_VALUE

        public static final int StepPositionsResponse_VALUE
        StepPositionsResponse = 26;
        See Also:
        Constant Field Values
      • ImplementationFileListRequest_VALUE

        public static final int ImplementationFileListRequest_VALUE
        ImplementationFileListRequest = 27;
        See Also:
        Constant Field Values
      • ImplementationFileListResponse_VALUE

        public static final int ImplementationFileListResponse_VALUE
        ImplementationFileListResponse = 28;
        See Also:
        Constant Field Values
      • StubImplementationCodeRequest_VALUE

        public static final int StubImplementationCodeRequest_VALUE
        StubImplementationCodeRequest = 29;
        See Also:
        Constant Field Values
      • ImplementationFileGlobPatternRequest_VALUE

        public static final int ImplementationFileGlobPatternRequest_VALUE
        ImplementationFileGlobPatternRequest = 31;
        See Also:
        Constant Field Values
      • ImplementationFileGlobPatternResponse_VALUE

        public static final int ImplementationFileGlobPatternResponse_VALUE
        ImplementationFileGlobPatternResponse = 32;
        See Also:
        Constant Field Values
      • SuiteExecutionResultItem_VALUE

        public static final int SuiteExecutionResultItem_VALUE
        SuiteExecutionResultItem = 33;
        See Also:
        Constant Field Values
      • KeepAlive_VALUE

        public static final int KeepAlive_VALUE
        KeepAlive = 34;
        See Also:
        Constant Field Values
    • Method Detail

      • values

        public static Messages.Message.MessageType[] 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 (Messages.Message.MessageType c : Messages.Message.MessageType.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static Messages.Message.MessageType valueOf​(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:
        IllegalArgumentException - if this enum type has no constant with the specified name
        NullPointerException - if the argument is null
      • getNumber

        public final int getNumber()
        Specified by:
        getNumber in interface com.google.protobuf.Internal.EnumLite
        Specified by:
        getNumber in interface com.google.protobuf.ProtocolMessageEnum
      • valueOf

        @Deprecated
        public static Messages.Message.MessageType valueOf​(int value)
        Deprecated.
        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:
        value - the name of the enum constant to be returned.
        Returns:
        the enum constant with the specified name
        Throws:
        IllegalArgumentException - if this enum type has no constant with the specified name
        NullPointerException - if the argument is null
      • getValueDescriptor

        public final com.google.protobuf.Descriptors.EnumValueDescriptor getValueDescriptor()
        Specified by:
        getValueDescriptor in interface com.google.protobuf.ProtocolMessageEnum
      • getDescriptorForType

        public final com.google.protobuf.Descriptors.EnumDescriptor getDescriptorForType()
        Specified by:
        getDescriptorForType in interface com.google.protobuf.ProtocolMessageEnum
      • getDescriptor

        public static final com.google.protobuf.Descriptors.EnumDescriptor getDescriptor()
      • valueOf

        public static Messages.Message.MessageType valueOf​(com.google.protobuf.Descriptors.EnumValueDescriptor desc)
        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:
        desc - the name of the enum constant to be returned.
        Returns:
        the enum constant with the specified name
        Throws:
        IllegalArgumentException - if this enum type has no constant with the specified name
        NullPointerException - if the argument is null