Package akka.cluster.protobuf.msg
Interface ClusterMessages.ConfigCheckOrBuilder
-
- All Superinterfaces:
akka.protobufv3.internal.MessageLiteOrBuilder
,akka.protobufv3.internal.MessageOrBuilder
- All Known Implementing Classes:
ClusterMessages.ConfigCheck
,ClusterMessages.ConfigCheck.Builder
- Enclosing class:
- ClusterMessages
public static interface ClusterMessages.ConfigCheckOrBuilder extends akka.protobufv3.internal.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
getClusterConfig()
optional string clusterConfig = 2;
akka.protobufv3.internal.ByteString
getClusterConfigBytes()
optional string clusterConfig = 2;
ClusterMessages.ConfigCheck.Type
getType()
required .ConfigCheck.Type type = 1;
boolean
hasClusterConfig()
optional string clusterConfig = 2;
boolean
hasType()
required .ConfigCheck.Type type = 1;
-
Methods inherited from interface akka.protobufv3.internal.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
hasType
boolean hasType()
required .ConfigCheck.Type type = 1;
- Returns:
- Whether the type field is set.
-
getType
ClusterMessages.ConfigCheck.Type getType()
required .ConfigCheck.Type type = 1;
- Returns:
- The type.
-
hasClusterConfig
boolean hasClusterConfig()
optional string clusterConfig = 2;
- Returns:
- Whether the clusterConfig field is set.
-
getClusterConfig
java.lang.String getClusterConfig()
optional string clusterConfig = 2;
- Returns:
- The clusterConfig.
-
getClusterConfigBytes
akka.protobufv3.internal.ByteString getClusterConfigBytes()
optional string clusterConfig = 2;
- Returns:
- The bytes for clusterConfig.
-
-