Package jadex.commons

Class SClassReader.EnumInfo

  • Enclosing class:
    SClassReader

    public static class SClassReader.EnumInfo
    extends java.lang.Object
    Info object for an enum.
    • Field Summary

      Fields 
      Modifier and Type Field Description
      protected java.lang.String type
      The enum type.
      protected java.lang.String value
      The enum value.
    • Constructor Summary

      Constructors 
      Modifier Constructor Description
      protected EnumInfo​(java.lang.String type, java.lang.String value)
      Create enum info.
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.lang.String getType()
      Gets the type.
      java.lang.String getValue()
      Gets the enum value.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Field Detail

      • type

        protected java.lang.String type
        The enum type.
      • value

        protected java.lang.String value
        The enum value.
    • Constructor Detail

      • EnumInfo

        protected EnumInfo​(java.lang.String type,
                           java.lang.String value)
        Create enum info.
    • Method Detail

      • getType

        public java.lang.String getType()
        Gets the type.
        Returns:
        Enum type.
      • getValue

        public java.lang.String getValue()
        Gets the enum value.
        Returns:
        The value.