Enum MyApplicationEventCode

  • All Implemented Interfaces:
    java.io.Serializable, java.lang.Comparable<MyApplicationEventCode>, org.jeyzer.mx.event.JzrEventCode

    public enum MyApplicationEventCode
    extends java.lang.Enum<MyApplicationEventCode>
    implements org.jeyzer.mx.event.JzrEventCode

    MyApplicationEventCode defines all the high level applicative event codes

    • Field Summary

      Fields 
      Modifier and Type Field Description
      static java.lang.String SERVICE  
    • Method Summary

      All Methods Static Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.lang.String getAbbreviation()  
      java.lang.String getDescription()  
      org.jeyzer.mx.event.JzrEventLevel getLevel()  
      java.lang.String getName()  
      org.jeyzer.mx.event.JzrEventSubLevel getSubLevel()  
      java.lang.String getTicket()  
      java.lang.String getType()  
      static MyApplicationEventCode valueOf​(java.lang.String name)
      Returns the enum constant of this type with the specified name.
      static MyApplicationEventCode[] values()
      Returns an array containing the constants of this enum type, in the order they are declared.
      • Methods inherited from class java.lang.Enum

        clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
      • Methods inherited from class java.lang.Object

        getClass, notify, notifyAll, wait, wait, wait
    • Method Detail

      • values

        public static MyApplicationEventCode[] values()
        Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
        for (MyApplicationEventCode c : MyApplicationEventCode.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static MyApplicationEventCode valueOf​(java.lang.String name)
        Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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:
        java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
        java.lang.NullPointerException - if the argument is null
      • getType

        public java.lang.String getType()
        Specified by:
        getType in interface org.jeyzer.mx.event.JzrEventCode
      • getName

        public java.lang.String getName()
        Specified by:
        getName in interface org.jeyzer.mx.event.JzrEventCode
      • getAbbreviation

        public java.lang.String getAbbreviation()
        Specified by:
        getAbbreviation in interface org.jeyzer.mx.event.JzrEventCode
      • getDescription

        public java.lang.String getDescription()
        Specified by:
        getDescription in interface org.jeyzer.mx.event.JzrEventCode
      • getTicket

        public java.lang.String getTicket()
        Specified by:
        getTicket in interface org.jeyzer.mx.event.JzrEventCode
      • getLevel

        public org.jeyzer.mx.event.JzrEventLevel getLevel()
        Specified by:
        getLevel in interface org.jeyzer.mx.event.JzrEventCode
      • getSubLevel

        public org.jeyzer.mx.event.JzrEventSubLevel getSubLevel()
        Specified by:
        getSubLevel in interface org.jeyzer.mx.event.JzrEventCode