java.lang.Object
org.jooq.postgres.extensions.types.Hstore
All Implemented Interfaces:
Serializable

public final class Hstore extends Object implements Serializable
A data type representing the PostgreSQL hstore type.
Author:
Lukas Eder
See Also:
  • Method Details

    • data

      @NotNull public final @NotNull Map<String,String> data()
    • valueOf

      @NotNull public static final @NotNull Hstore valueOf(Map<String,String> data)
      Create a new Hstore instance from string data input.
    • hstore

      @NotNull public static final @NotNull Hstore hstore(Map<String,String> data)
      Create a new Hstore instance from map data input.

      This is the same as valueOf(Map), but it can be static imported.

    • hstoreOrNull

      @Nullable public static final @Nullable Hstore hstoreOrNull(Map<String,String> data)
      Create a new Hstore instance from string data input, or null if the input is null.
    • hashCode

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

      public boolean equals(Object obj)
      Overrides:
      equals in class Object
    • toString

      public String toString()
      Overrides:
      toString in class Object