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 Link icon

    • SUB Link icon

      public static final LikePattern SUB
      Pattern %value%
    • END Link icon

      public static final LikePattern END
      Pattern %value
    • START Link icon

      public static final LikePattern START
      Pattern value%
    • EQ Link icon

      public static final LikePattern EQ
      Pattern value
  • Method Details Link icon

    • values Link icon

      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 Link icon

      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 Link icon

      public static LikePattern of(String type)
    • get Link icon

      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.