Module bus.core

Enum Class EnumValue.Naming

java.lang.Object
java.lang.Enum<EnumValue.Naming>
org.miaixz.bus.core.lang.EnumValue.Naming
All Implemented Interfaces:
Serializable, Comparable<EnumValue.Naming>, Constable
Enclosing interface:
EnumValue<E extends EnumValue<E>>

public static enum EnumValue.Naming extends Enum<EnumValue.Naming>
命名模式
  • Enum Constant Details

    • NORMAL

      public static final EnumValue.Naming NORMAL
      默认/正常
    • BOLD

      public static final EnumValue.Naming BOLD
      粗体或增加强度
    • FAINT

      public static final EnumValue.Naming FAINT
      弱化(降低强度)
    • ITALIC

      public static final EnumValue.Naming ITALIC
      斜体
    • UPPER_CASE

      public static final EnumValue.Naming UPPER_CASE
      转换为大写
    • LOWER_CASE

      public static final EnumValue.Naming LOWER_CASE
      转换为小写
    • CAMEL

      public static final EnumValue.Naming CAMEL
      驼峰形式
    • CAMEL_UNDERLINE_UPPER_CASE

      public static final EnumValue.Naming CAMEL_UNDERLINE_UPPER_CASE
      驼峰转下划线大写形式
    • CAMEL_UNDERLINE_LOWER_CASE

      public static final EnumValue.Naming CAMEL_UNDERLINE_LOWER_CASE
      驼峰转下划线小写形式
  • Method Details

    • values

      public static EnumValue.Naming[] 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 EnumValue.Naming 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