Package io.stargate.auth
Class TypedKeyValue
- java.lang.Object
-
- io.stargate.auth.TypedKeyValue
-
public class TypedKeyValue extends Object
-
-
Constructor Summary
Constructors Constructor Description TypedKeyValue(String name, TypedValue typedValue)TypedKeyValue(String name, Column.ColumnType type, Object value)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static List<TypedKeyValue>forDML(BoundDMLQuery dmlQuery)static List<TypedKeyValue>forSelect(BoundSelect select)StringgetName()Column.ColumnTypegetType()ObjectgetValue()
-
-
-
Constructor Detail
-
TypedKeyValue
public TypedKeyValue(String name, Column.ColumnType type, Object value)
-
TypedKeyValue
public TypedKeyValue(String name, TypedValue typedValue)
-
-
Method Detail
-
getName
public String getName()
-
getType
public Column.ColumnType getType()
-
getValue
public Object getValue()
-
forSelect
public static List<TypedKeyValue> forSelect(BoundSelect select)
-
forDML
public static List<TypedKeyValue> forDML(BoundDMLQuery dmlQuery)
-
-