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 theoriginalnon Mutiny-ified interface using Vert.x codegen.
-
-
Field Summary
Fields Modifier and Type Field Description static io.smallrye.mutiny.vertx.TypeArg<PropertyKind>__TYPE_ARGio.smallrye.mutiny.vertx.TypeArg<T>__typeArg_0
-
Constructor Summary
Constructors Constructor Description PropertyKind(io.vertx.sqlclient.PropertyKind delegate)PropertyKind(io.vertx.sqlclient.PropertyKind delegate, io.smallrye.mutiny.vertx.TypeArg<T> typeArg_0)PropertyKind(Object delegate, io.smallrye.mutiny.vertx.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)booleanequals(Object o)io.vertx.sqlclient.PropertyKindgetDelegate()inthashCode()Stringname()static <T> PropertyKind<T>newInstance(io.vertx.sqlclient.PropertyKind arg)static <T> PropertyKind<T>newInstance(io.vertx.sqlclient.PropertyKind arg, io.smallrye.mutiny.vertx.TypeArg<T> __typeArg_T)StringtoString()
-
-
-
Field Detail
-
__TYPE_ARG
public static final io.smallrye.mutiny.vertx.TypeArg<PropertyKind> __TYPE_ARG
-
__typeArg_0
public final io.smallrye.mutiny.vertx.TypeArg<T> __typeArg_0
-
-
Constructor Detail
-
PropertyKind
public PropertyKind(io.vertx.sqlclient.PropertyKind delegate)
-
PropertyKind
public PropertyKind(io.vertx.sqlclient.PropertyKind delegate, io.smallrye.mutiny.vertx.TypeArg<T> typeArg_0)
-
-
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, thetypecan 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, io.smallrye.mutiny.vertx.TypeArg<T> __typeArg_T)
-
-