Enum RefreshMode

java.lang.Object
java.lang.Enum<RefreshMode>
net.sf.jsqlparser.statement.refresh.RefreshMode
All Implemented Interfaces:
Serializable, Comparable<RefreshMode>

public enum RefreshMode extends Enum<RefreshMode>
  • Enum Constant Details

    • DEFAULT

      public static final RefreshMode DEFAULT
    • WITH_DATA

      public static final RefreshMode WITH_DATA
    • WITH_NO_DATA

      public static final RefreshMode WITH_NO_DATA
  • Constructor Details

    • RefreshMode

      private RefreshMode()
  • Method Details

    • values

      public static RefreshMode[] values()
      Returns an array containing the constants of this enum type, in the order they are declared.
      Returns:
      an array containing the constants of this enum type, in the order they are declared
    • valueOf

      public static RefreshMode valueOf(String name)
      Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
      Parameters:
      name - the name of the enum constant to be returned.
      Returns:
      the enum constant with the specified name
      Throws:
      IllegalArgumentException - if this enum type has no constant with the specified name
      NullPointerException - if the argument is null
    • from

      public static RefreshMode from(String type)