Enum CodeList

    • Enum Constant Detail

      • MAIN

        public static final CodeList MAIN
      • ON_OPEN

        public static final CodeList ON_OPEN
      • ON_FOCUS

        public static final CodeList ON_FOCUS
      • ON_LOST_FOCUS

        public static final CodeList ON_LOST_FOCUS
      • ON_MAY_CLOSE

        public static final CodeList ON_MAY_CLOSE
      • ON_CLOSE

        public static final CodeList ON_CLOSE
      • ON_STARTUP

        public static final CodeList ON_STARTUP
      • ON_SHUTDOWN

        public static final CodeList ON_SHUTDOWN
      • ON_CONCURRENT_UPDATE

        public static final CodeList ON_CONCURRENT_UPDATE
      • ON_CONCURRENT_DELETE

        public static final CodeList ON_CONCURRENT_DELETE
      • ON_CONCURRENT_RENAME

        public static final CodeList ON_CONCURRENT_RENAME
      • ON_CONCURRENT_COPY

        public static final CodeList ON_CONCURRENT_COPY
      • ON_RENAME

        public static final CodeList ON_RENAME
      • ON_DELETE

        public static final CodeList ON_DELETE
      • ON_COPY

        public static final CodeList ON_COPY
      • ON_UPDATE

        public static final CodeList ON_UPDATE
      • TITLE

        public static final CodeList TITLE
      • RESOURCE_TYPE

        public static final CodeList RESOURCE_TYPE
      • BODY_HEIGHT

        public static final CodeList BODY_HEIGHT
      • INTERCEPTION_POINTS

        public static final CodeList INTERCEPTION_POINTS
      • PANEL_TYPE

        public static final CodeList PANEL_TYPE
      • DIVIDER

        public static final CodeList DIVIDER
    • Method Detail

      • values

        public static CodeList[] 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 (CodeList c : CodeList.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static CodeList valueOf​(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:
        IllegalArgumentException - if this enum type has no constant with the specified name
        NullPointerException - if the argument is null
      • convert

        public static CodeList convert​(org.uberfire.ext.plugin.model.CodeType codeType)