Class PropertyKind<T>

java.lang.Object
io.vertx.mutiny.sqlclient.PropertyKind<T>
All Implemented Interfaces:
MutinyDelegate

public class PropertyKind<T> extends Object implements MutinyDelegate
The kind of the property, this can be used to fetch some specific property of the execution result.

NOTE: This class has been automatically generated from the original non Mutiny-ified interface using Vert.x codegen.

  • Field Details

  • Constructor Details

    • PropertyKind

      public PropertyKind(io.vertx.sqlclient.PropertyKind delegate)
    • PropertyKind

      public PropertyKind(Object delegate, TypeArg<T> typeArg_0)
    • PropertyKind

      public PropertyKind(io.vertx.sqlclient.PropertyKind delegate, TypeArg<T> typeArg_0)
  • Method Details

    • getDelegate

      public io.vertx.sqlclient.PropertyKind getDelegate()
      Specified by:
      getDelegate in interface MutinyDelegate
      Returns:
      the delegate used by this Mutiny object of generated type
    • toString

      public String toString()
      Overrides:
      toString in class Object
    • equals

      public boolean equals(Object o)
      Overrides:
      equals in class Object
    • hashCode

      public int hashCode()
      Overrides:
      hashCode in class Object
    • create

      public static <T> PropertyKind<T> create(String name, Class<T> type)
      Parameters:
      name -
      type -
      Returns:
      a property kind matching the provided name, the type 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)