Package s2.v1alpha
Interface BasinInfoOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
BasinInfo
,BasinInfo.Builder
public interface BasinInfoOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
getName()
Basin name.com.google.protobuf.ByteString
getNameBytes()
Basin name.BasinScope
getScope()
Basin scope.int
getScopeValue()
Basin scope.BasinState
getState()
Basin state.int
getStateValue()
Basin state.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getName
java.lang.String getName()
Basin name.
string name = 1;
- Returns:
- The name.
-
getNameBytes
com.google.protobuf.ByteString getNameBytes()
Basin name.
string name = 1;
- Returns:
- The bytes for name.
-
getScopeValue
int getScopeValue()
Basin scope.
.s2.v1alpha.BasinScope scope = 5;
- Returns:
- The enum numeric value on the wire for scope.
-
getScope
BasinScope getScope()
Basin scope.
.s2.v1alpha.BasinScope scope = 5;
- Returns:
- The scope.
-
getStateValue
int getStateValue()
Basin state.
.s2.v1alpha.BasinState state = 4;
- Returns:
- The enum numeric value on the wire for state.
-
getState
BasinState getState()
Basin state.
.s2.v1alpha.BasinState state = 4;
- Returns:
- The state.
-
-