Enum Class LikePattern

java.lang.Object
java.lang.Enum<LikePattern>
org.bgerp.util.sql.LikePattern
All Implemented Interfaces:
Serializable, Comparable<LikePattern>, Constable

public enum LikePattern extends Enum<LikePattern>
SQL LIKE patterns generators for a substring.
  • Enum Constant Details

    • SUB

      public static final LikePattern SUB
      Pattern %value%
    • END

      public static final LikePattern END
      Pattern %value
    • START

      public static final LikePattern START
      Pattern value%
    • EQ

      public static final LikePattern EQ
      Pattern value
  • Method Details

    • values

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

      public static LikePattern valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified name
      NullPointerException - if the argument is null
    • of

      public static LikePattern of(String type)
    • get

      public abstract String get(String substr)
      Generates pattern for a given strategy.
      Parameters:
      substr - substring.
      Returns:
      substr for null or empty string or generated pattern.