Package io.hstream.internal
Interface ColumnCatalogOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ColumnCatalog
,ColumnCatalog.Builder
public interface ColumnCatalogOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description int
getIndex()
uint32 index = 1;
boolean
getIsHidden()
bool isHidden = 5;
boolean
getIsNullable()
bool isNullable = 4;
String
getName()
string name = 2;
com.google.protobuf.ByteString
getNameBytes()
string name = 2;
String
getType()
string type = 3;
com.google.protobuf.ByteString
getTypeBytes()
string type = 3;
-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getIndex
int getIndex()
uint32 index = 1;
- Returns:
- The index.
-
getName
String getName()
string name = 2;
- Returns:
- The name.
-
getNameBytes
com.google.protobuf.ByteString getNameBytes()
string name = 2;
- Returns:
- The bytes for name.
-
getType
String getType()
string type = 3;
- Returns:
- The type.
-
getTypeBytes
com.google.protobuf.ByteString getTypeBytes()
string type = 3;
- Returns:
- The bytes for type.
-
getIsNullable
boolean getIsNullable()
bool isNullable = 4;
- Returns:
- The isNullable.
-
getIsHidden
boolean getIsHidden()
bool isHidden = 5;
- Returns:
- The isHidden.
-
-