Package org.apache.spark.status.protobuf
Interface StoreTypes.AccumulableInfoOrBuilder
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
StoreTypes.AccumulableInfo
,StoreTypes.AccumulableInfo.Builder
- Enclosing class:
- StoreTypes
public static interface StoreTypes.AccumulableInfoOrBuilder
extends com.google.protobuf.MessageOrBuilder
-
Method Summary
Modifier and TypeMethodDescriptionlong
getId()
int64 id = 1;
getName()
optional string name = 2;
com.google.protobuf.ByteString
optional string name = 2;
optional string update = 3;
com.google.protobuf.ByteString
optional string update = 3;
getValue()
optional string value = 4;
com.google.protobuf.ByteString
optional string value = 4;
boolean
hasName()
optional string name = 2;
boolean
optional string update = 3;
boolean
hasValue()
optional string value = 4;
Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder
isInitialized
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
Method Details
-
getId
long getId()int64 id = 1;
- Returns:
- The id.
-
hasName
boolean hasName()optional string name = 2;
- Returns:
- Whether the name field is set.
-
getName
String getName()optional string name = 2;
- Returns:
- The name.
-
getNameBytes
com.google.protobuf.ByteString getNameBytes()optional string name = 2;
- Returns:
- The bytes for name.
-
hasUpdate
boolean hasUpdate()optional string update = 3;
- Returns:
- Whether the update field is set.
-
getUpdate
String getUpdate()optional string update = 3;
- Returns:
- The update.
-
getUpdateBytes
com.google.protobuf.ByteString getUpdateBytes()optional string update = 3;
- Returns:
- The bytes for update.
-
hasValue
boolean hasValue()optional string value = 4;
- Returns:
- Whether the value field is set.
-
getValue
String getValue()optional string value = 4;
- Returns:
- The value.
-
getValueBytes
com.google.protobuf.ByteString getValueBytes()optional string value = 4;
- Returns:
- The bytes for value.
-