Package app.ductape.sdk.vector.types
Enum Class VectorActionInterfaceTypes.VectorActionOperation
java.lang.Object
java.lang.Enum<VectorActionInterfaceTypes.VectorActionOperation>
app.ductape.sdk.vector.types.VectorActionInterfaceTypes.VectorActionOperation
- All Implemented Interfaces:
Serializable,Comparable<VectorActionInterfaceTypes.VectorActionOperation>,Constable
- Enclosing class:
- VectorActionInterfaceTypes
public static enum VectorActionInterfaceTypes.VectorActionOperation
extends Enum<VectorActionInterfaceTypes.VectorActionOperation>
TS
VectorActionTypes enum — wire values match TS string initializer values-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescription -
Method Summary
Modifier and TypeMethodDescriptionParses TS wire strings (snake_case); unknown inputs fall back toQUERY.static StringnormalizeWire(String raw) Normalizes user/alias strings to the canonical TS wire form (defaultquery).Returns the enum constant of this class with the specified name.values()Returns an array containing the constants of this enum class, in the order they are declared.wire()
-
Enum Constant Details
-
QUERY
-
FIND_SIMILAR
-
UPSERT
-
UPSERT_ONE
-
FETCH
-
FETCH_ONE
-
LIST
-
COUNT
-
EXISTS
-
UPDATE
-
DELETE_BY_IDS
-
DELETE_BY_FILTER
-
DELETE_ALL
-
LIST_NAMESPACES
-
GET_STATS
-
DESCRIBE_INDEX
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum class has no constant with the specified nameNullPointerException- if the argument is null
-
wire
-
fromWire
Parses TS wire strings (snake_case); unknown inputs fall back toQUERY. -
normalizeWire
Normalizes user/alias strings to the canonical TS wire form (defaultquery).
-