Class DataEncryptionMetadata

    • Method Detail

      • allowCleartext

        public final Boolean allowCleartext()

        Indicates whether encrypted tables can contain cleartext data (true) or are to cryptographically process every column (false).

        Returns:
        Indicates whether encrypted tables can contain cleartext data (true) or are to cryptographically process every column (false).
      • allowDuplicates

        public final Boolean allowDuplicates()

        Indicates whether Fingerprint columns can contain duplicate entries (true) or are to contain only non-repeated values (false).

        Returns:
        Indicates whether Fingerprint columns can contain duplicate entries (true) or are to contain only non-repeated values (false).
      • allowJoinsOnColumnsWithDifferentNames

        public final Boolean allowJoinsOnColumnsWithDifferentNames()

        Indicates whether Fingerprint columns can be joined on any other Fingerprint column with a different name (true) or can only be joined on Fingerprint columns of the same name (false).

        Returns:
        Indicates whether Fingerprint columns can be joined on any other Fingerprint column with a different name (true) or can only be joined on Fingerprint columns of the same name (false).
      • preserveNulls

        public final Boolean preserveNulls()

        Indicates whether NULL values are to be copied as NULL to encrypted tables (true) or cryptographically processed (false).

        Returns:
        Indicates whether NULL values are to be copied as NULL to encrypted tables (true) or cryptographically processed (false).
      • hashCode

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

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

        public final String toString()
        Returns a string representation of this object. This is useful for testing and debugging. Sensitive data will be redacted from this string using a placeholder value.
        Overrides:
        toString in class Object
      • getValueForField

        public final <T> Optional<T> getValueForField​(String fieldName,
                                                      Class<T> clazz)