Package io.vertx.mutiny.sqlclient
Class PropertyKind<T>
- java.lang.Object
-
- io.vertx.mutiny.sqlclient.PropertyKind<T>
-
public class PropertyKind<T> extends Object
The kind of the property, this can be used to fetch some specific property of theexecution result
. NOTE: This class has been automatically generated from theoriginal
non Mutiny-ified interface using Vert.x codegen.
-
-
Field Summary
Fields Modifier and Type Field Description static TypeArg<PropertyKind>
__TYPE_ARG
TypeArg<T>
__typeArg_0
-
Constructor Summary
Constructors Constructor Description PropertyKind(io.vertx.sqlclient.PropertyKind delegate)
PropertyKind(io.vertx.sqlclient.PropertyKind delegate, TypeArg<T> typeArg_0)
PropertyKind(Object delegate, TypeArg<T> typeArg_0)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static <T> PropertyKind<T>
create(String name, Class<T> type)
boolean
equals(Object o)
io.vertx.sqlclient.PropertyKind
getDelegate()
int
hashCode()
String
name()
static <T> PropertyKind<T>
newInstance(io.vertx.sqlclient.PropertyKind arg)
static <T> PropertyKind<T>
newInstance(io.vertx.sqlclient.PropertyKind arg, TypeArg<T> __typeArg_T)
String
toString()
-
-
-
Field Detail
-
__TYPE_ARG
public static final TypeArg<PropertyKind> __TYPE_ARG
-
-
Method Detail
-
getDelegate
public io.vertx.sqlclient.PropertyKind getDelegate()
-
create
public static <T> PropertyKind<T> create(String name, Class<T> type)
- Parameters:
name
-type
-- Returns:
- a property kind matching the provided
name
, thetype
can be used to check the property value type or cast it to the expected type
-
name
public String name()
- Returns:
- the property name
-
newInstance
public static <T> PropertyKind<T> newInstance(io.vertx.sqlclient.PropertyKind arg)
-
newInstance
public static <T> PropertyKind<T> newInstance(io.vertx.sqlclient.PropertyKind arg, TypeArg<T> __typeArg_T)
-
-