blob: 48e5b2a99853e55c84fb5d5f2860fe428a09a144 [file] [log] [blame]
/**
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
// Generated by http://code.google.com/p/protostuff/ ... DO NOT EDIT!
// Generated from BitControl.Proto
package org.apache.drill.exec.proto;
public enum RpcType implements com.dyuproject.protostuff.EnumLite<RpcType>
{
HANDSHAKE(0),
ACK(1),
GOODBYE(2),
REQ_INIATILIZE_FRAGMENT(3),
REQ_CANCEL_FRAGMENT(6),
REQ_FRAGMENT_STATUS(7),
REQ_BIT_STATUS(8),
RESP_FRAGMENT_HANDLE(9),
RESP_FRAGMENT_STATUS(10),
RESP_BIT_STATUS(11);
public final int number;
private RpcType (int number)
{
this.number = number;
}
public int getNumber()
{
return number;
}
public static RpcType valueOf(int number)
{
switch(number)
{
case 0: return HANDSHAKE;
case 1: return ACK;
case 2: return GOODBYE;
case 3: return REQ_INIATILIZE_FRAGMENT;
case 6: return REQ_CANCEL_FRAGMENT;
case 7: return REQ_FRAGMENT_STATUS;
case 8: return REQ_BIT_STATUS;
case 9: return RESP_FRAGMENT_HANDLE;
case 10: return RESP_FRAGMENT_STATUS;
case 11: return RESP_BIT_STATUS;
default: return null;
}
}
}