Class EnumUtil.EnumValueInfo<T>

java.lang.Object
jp.ecuacion.lib.core.util.EnumUtil.EnumValueInfo<T>
Enclosing class:
EnumUtil

public static class EnumUtil.EnumValueInfo<T> extends Object
Contains Enum value info.
  • Constructor Details

    • EnumValueInfo

      public EnumValueInfo(String name, String code, String label, T instance, String enumClassName)
      Constructs a new instance.
      Parameters:
      name - the name of the enum element
      code - the code of the enum element
      label - the display name of the enum element
      instance - the instance of the enum value
      enumClassName - the name of the enum class
  • Method Details

    • getName

      public String getName()
    • getCode

      public String getCode()
    • getLabel

      public String getLabel()
    • getInstance

      public T getInstance()
    • getEnumClassName

      public String getEnumClassName()