Class With


  • public class With
    extends java.lang.Object
    WITH to set metadata on the table: WITH (fillfactor=70)
    • Field Summary

      Fields 
      Modifier and Type Field Description
      static java.util.List<With> EMPTY  
    • Constructor Summary

      Constructors 
      Constructor Description
      With​(java.lang.String name, java.lang.String value)  
    • Method Summary

      All Methods Static Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.lang.String buildWithComponent()
      builds the sql component 'WITH'
      java.lang.String getName()  
      java.lang.String getValue()  
      void setName​(java.lang.String name)  
      void setValue​(java.lang.String value)  
      static With with​(java.lang.String key, java.lang.String value)
      creates a with statement
      • Methods inherited from class java.lang.Object

        clone, equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Field Detail

      • EMPTY

        public static final java.util.List<With> EMPTY
    • Constructor Detail

      • With

        public With​(java.lang.String name,
                    java.lang.String value)
        Parameters:
        name -
        value -
    • Method Detail

      • getValue

        public java.lang.String getValue()
      • setValue

        public void setValue​(java.lang.String value)
      • getName

        public java.lang.String getName()
      • setName

        public void setName​(java.lang.String name)
      • buildWithComponent

        public java.lang.String buildWithComponent()
        builds the sql component 'WITH'
        Returns:
      • with

        public static With with​(java.lang.String key,
                                java.lang.String value)
        creates a with statement
        Parameters:
        key -
        value -