Enum Class CaseType

java.lang.Object
java.lang.Enum<CaseType>
cool.scx.util.case_impl.CaseType
所有已实现的接口:
Serializable, Comparable<CaseType>, Constable

public enum CaseType extends Enum<CaseType>

CaseType class.

版本:
0.0.8
作者:
scx567888
  • 枚举常量详细资料

    • CAMEL_CASE

      public static final CaseType CAMEL_CASE
      驼峰命名法 getNameByAge
    • PASCAL_CASE

      public static final CaseType PASCAL_CASE
      匈牙利命名法 GetNameByAge
    • KEBAB_CASE

      public static final CaseType KEBAB_CASE
      短横线命名法 get-name-by-age
    • SNAKE_CASE

      public static final CaseType SNAKE_CASE
      蛇形命名法 get_name_by_age
    • BLANK

      public static final CaseType BLANK
      空白字符串
  • 方法详细资料

    • values

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

      public static CaseType 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.)
      参数:
      name - 要返回的枚举常量的名称。
      返回:
      返回带有指定名称的枚举常量
      抛出:
      IllegalArgumentException - if this enum class has no constant with the specified name
      NullPointerException - 如果参数为空值
    • getSourceStrings

      public String[] getSourceStrings(String o)
    • getString

      public String getString(String[] s)