Enum UGCEvent

    • Enum Constant Detail

      • UPDATE

        public static final UGCEvent UPDATE
      • MODERATE

        public static final UGCEvent MODERATE
      • UNFLAG

        public static final UGCEvent UNFLAG
      • FLAG

        public static final UGCEvent FLAG
      • CREATE

        public static final UGCEvent CREATE
      • DELETE

        public static final UGCEvent DELETE
      • READ

        public static final UGCEvent READ
      • VOTE

        public static final UGCEvent VOTE
      • UPDATE_ATTRIBUTES

        public static final UGCEvent UPDATE_ATTRIBUTES
      • DELETE_ATTRIBUTES

        public static final UGCEvent DELETE_ATTRIBUTES
      • ADD_ATTACHMENT

        public static final UGCEvent ADD_ATTACHMENT
      • DELETE_ATTACHMENT

        public static final UGCEvent DELETE_ATTACHMENT
    • Method Detail

      • values

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

        public static UGCEvent 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
      • getName

        public String getName()