Package ucar.gcdm
Interface GcdmNetcdfProto.DimensionOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
GcdmNetcdfProto.Dimension
,GcdmNetcdfProto.Dimension.Builder
- Enclosing class:
- GcdmNetcdfProto
public static interface GcdmNetcdfProto.DimensionOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
getIsPrivate()
bool is_private = 5;
boolean
getIsUnlimited()
bool is_unlimited = 3;
boolean
getIsVlen()
bool is_vlen = 4;
long
getLength()
optional when vlen, may be zero if unlimitedString
getName()
short name - optional when privatecom.google.protobuf.ByteString
getNameBytes()
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 if unlimited
uint64 length = 2;
- Returns:
- The length.
-
getIsUnlimited
boolean getIsUnlimited()
bool is_unlimited = 3;
- Returns:
- The isUnlimited.
-
getIsVlen
boolean getIsVlen()
bool is_vlen = 4;
- Returns:
- The isVlen.
-
getIsPrivate
boolean getIsPrivate()
bool is_private = 5;
- Returns:
- The isPrivate.
-
-