Package com.nhn.gameanvil.protocol
Interface Log.CustomLogOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
Log.CustomLog
,Log.CustomLog.Builder
- Enclosing class:
- Log
public static interface Log.CustomLogOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description int
getCode()
int32 code = 1;
com.google.protobuf.ByteString
getData()
bytes data = 3;
java.lang.String
getMessage()
string message = 2;
com.google.protobuf.ByteString
getMessageBytes()
string message = 2;
-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getCode
int getCode()
int32 code = 1;
- Returns:
- The code.
-
getMessage
java.lang.String getMessage()
string message = 2;
- Returns:
- The message.
-
getMessageBytes
com.google.protobuf.ByteString getMessageBytes()
string message = 2;
- Returns:
- The bytes for message.
-
getData
com.google.protobuf.ByteString getData()
bytes data = 3;
- Returns:
- The data.
-
-