Package ucar.nc2.stream
Interface NcStreamProto.DimensionOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
NcStreamProto.Dimension,NcStreamProto.Dimension.Builder
- Enclosing class:
- NcStreamProto
public static interface NcStreamProto.DimensionOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleangetIsPrivate()bool isPrivate = 5;booleangetIsUnlimited()is this needed ??booleangetIsVlen()bool isVlen = 4;longgetLength()optional when vlen, may be zero (unlimited no data yet)StringgetName()short name - optional when privatecom.google.protobuf.ByteStringgetNameBytes()short name - optional when private-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getName
String getName()
short name - optional when private
string name = 1;- Returns:
- The name.
-
getNameBytes
com.google.protobuf.ByteString getNameBytes()
short name - optional when private
string name = 1;- Returns:
- The bytes for name.
-
getLength
long getLength()
optional when vlen, may be zero (unlimited no data yet)
uint64 length = 2;- Returns:
- The length.
-
getIsUnlimited
boolean getIsUnlimited()
is this needed ??
bool isUnlimited = 3;- Returns:
- The isUnlimited.
-
getIsVlen
boolean getIsVlen()
bool isVlen = 4;- Returns:
- The isVlen.
-
getIsPrivate
boolean getIsPrivate()
bool isPrivate = 5;- Returns:
- The isPrivate.
-
-