Package flyteidl.admin
Interface Common.SortOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
Common.Sort,Common.Sort.Builder
- Enclosing class:
- Common
public static interface Common.SortOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Common.Sort.DirectiongetDirection()Indicates the direction to apply sort key for response values.intgetDirectionValue()Indicates the direction to apply sort key for response values.StringgetKey()Indicates an attribute to sort the response values.com.google.protobuf.ByteStringgetKeyBytes()Indicates an attribute to sort the response values.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getKey
String getKey()
Indicates an attribute to sort the response values. +required
string key = 1;- Returns:
- The key.
-
getKeyBytes
com.google.protobuf.ByteString getKeyBytes()
Indicates an attribute to sort the response values. +required
string key = 1;- Returns:
- The bytes for key.
-
getDirectionValue
int getDirectionValue()
Indicates the direction to apply sort key for response values. +optional
.flyteidl.admin.Sort.Direction direction = 2;- Returns:
- The enum numeric value on the wire for direction.
-
getDirection
Common.Sort.Direction getDirection()
Indicates the direction to apply sort key for response values. +optional
.flyteidl.admin.Sort.Direction direction = 2;- Returns:
- The direction.
-
-