Package akka.remote
Interface ContainerFormats.SelectionOrBuilder
-
- All Superinterfaces:
akka.protobufv3.internal.MessageLiteOrBuilder
,akka.protobufv3.internal.MessageOrBuilder
- All Known Implementing Classes:
ContainerFormats.Selection
,ContainerFormats.Selection.Builder
- Enclosing class:
- ContainerFormats
public static interface ContainerFormats.SelectionOrBuilder extends akka.protobufv3.internal.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
getMatcher()
optional string matcher = 2;
akka.protobufv3.internal.ByteString
getMatcherBytes()
optional string matcher = 2;
ContainerFormats.PatternType
getType()
required .PatternType type = 1;
boolean
hasMatcher()
optional string matcher = 2;
boolean
hasType()
required .PatternType 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 .PatternType type = 1;
- Returns:
- Whether the type field is set.
-
getType
ContainerFormats.PatternType getType()
required .PatternType type = 1;
- Returns:
- The type.
-
hasMatcher
boolean hasMatcher()
optional string matcher = 2;
- Returns:
- Whether the matcher field is set.
-
getMatcher
java.lang.String getMatcher()
optional string matcher = 2;
- Returns:
- The matcher.
-
getMatcherBytes
akka.protobufv3.internal.ByteString getMatcherBytes()
optional string matcher = 2;
- Returns:
- The bytes for matcher.
-
-