本文整理汇总了Java中com.google.protobuf.Internal.EnumLite.getNumber方法的典型用法代码示例。如果您正苦于以下问题:Java EnumLite.getNumber方法的具体用法?Java EnumLite.getNumber怎么用?Java EnumLite.getNumber使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类com.google.protobuf.Internal.EnumLite
的用法示例。
在下文中一共展示了EnumLite.getNumber方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: OutboundRpcMessage
import com.google.protobuf.Internal.EnumLite; //导入方法依赖的package包/类
public OutboundRpcMessage(RpcMode mode, EnumLite rpcType, int coordinationId, MessageLite pBody, ByteBuf... dBodies) {
this(mode, rpcType.getNumber(), coordinationId, pBody, dBodies);
}
示例2: hashEnum
import com.google.protobuf.Internal.EnumLite; //导入方法依赖的package包/类
/**
* @deprecated from v3.0.0-beta-3+, for compatibility with v2.5.0 and v2.6.1
* generated code.
*/
@Deprecated
protected static int hashEnum(EnumLite e) {
return e.getNumber();
}
示例3: hashEnum
import com.google.protobuf.Internal.EnumLite; //导入方法依赖的package包/类
/**
* Helper method for implementing {@link Message#hashCode()}.
* <p>
* This is needed because {@link java.lang.Enum#hashCode()} is final, but we
* need to use the field number as the hash code to ensure compatibility
* between statically and dynamically generated enum objects.
*/
protected static int hashEnum(EnumLite e) {
return e.getNumber();
}