Enum Action.Type

    • Enum Constant Detail

      • FORWARD_TEMPLATE

        public static final Action.Type FORWARD_TEMPLATE
      • FORWARD_CLASS_CALLBACK

        public static final Action.Type FORWARD_CLASS_CALLBACK
      • FORWARD_OBJECT_CALLBACK

        public static final Action.Type FORWARD_OBJECT_CALLBACK
      • FORWARD_REPLACE

        public static final Action.Type FORWARD_REPLACE
      • RESPONSE_TEMPLATE

        public static final Action.Type RESPONSE_TEMPLATE
      • RESPONSE_CLASS_CALLBACK

        public static final Action.Type RESPONSE_CLASS_CALLBACK
      • RESPONSE_OBJECT_CALLBACK

        public static final Action.Type RESPONSE_OBJECT_CALLBACK
    • Method Detail

      • values

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

        public static Action.Type 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