Enum ClickEvent.Action

    • Field Detail

      • LOOKUP

        private static final java.util.Map<java.lang.String,​ClickEvent.Action> LOOKUP
      • allowFromServer

        private final boolean allowFromServer
      • name

        private final java.lang.String name
    • Constructor Detail

      • Action

        private Action​(java.lang.String p_i45155_3_,
                       boolean p_i45155_4_)
    • Method Detail

      • values

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

        public static ClickEvent.Action 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
      • isAllowedFromServer

        public boolean isAllowedFromServer()
      • getName

        public java.lang.String getName()
      • getByName

        public static ClickEvent.Action getByName​(java.lang.String p_150672_0_)