Package io.vertx.sqlclient
Interface PropertyKind<T>
-
public interface PropertyKind<T>
The kind of the property, this can be used to fetch some specific property of theexecution result
.
-
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Modifier and Type Method Description static <T> PropertyKind<T>
create(String name, Class<T> type)
String
name()
Class<T>
type()
-
-
-
Method Detail
-
create
static <T> PropertyKind<T> create(String name, Class<T> 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
String name()
- Returns:
- the property name
-
-