Enum JournalEntryType

    • Enum Constant Detail

      • UNINDEX_SPACE_CHANGE

        public static final JournalEntryType UNINDEX_SPACE_CHANGE
        Since:
        7.9.0
      • UPDATE_DOCUMENT_EXCLUDING_DEPENDENTS

        public static final JournalEntryType UPDATE_DOCUMENT_EXCLUDING_DEPENDENTS
        Since:
        6.13.0
      • DELETE_CHANGE_DOCUMENTS

        public static final JournalEntryType DELETE_CHANGE_DOCUMENTS
      • REBUILD_CHANGE_DOCUMENTS

        public static final JournalEntryType REBUILD_CHANGE_DOCUMENTS
      • REINDEX_ALL_USERS

        public static final JournalEntryType REINDEX_ALL_USERS
        Since:
        5.8
      • REINDEX_ALL_USERS_CHANGE

        public static final JournalEntryType REINDEX_ALL_USERS_CHANGE
        Since:
        7.9.0
      • REINDEX_USERS_IN_GROUP

        public static final JournalEntryType REINDEX_USERS_IN_GROUP
        Since:
        5.8
      • REINDEX_USERS_IN_GROUP_CHANGE

        public static final JournalEntryType REINDEX_USERS_IN_GROUP_CHANGE
        Since:
        7.9.0
      • REINDEX_ALL_SPACES

        public static final JournalEntryType REINDEX_ALL_SPACES
        Since:
        5.10
      • REINDEX_ALL_SPACES_CHANGE

        public static final JournalEntryType REINDEX_ALL_SPACES_CHANGE
        Since:
        7.9.0
      • UNINDEX_CONTENT_TYPE

        public static final JournalEntryType UNINDEX_CONTENT_TYPE
        Since:
        5.10
      • UNINDEX_CONTENT_TYPE_CHANGE

        public static final JournalEntryType UNINDEX_CONTENT_TYPE_CHANGE
        Since:
        7.9.0
      • REINDEX_ALL_BLOGS

        public static final JournalEntryType REINDEX_ALL_BLOGS
        Since:
        6.1
      • REINDEX_ALL_BLOGS_CHANGE

        public static final JournalEntryType REINDEX_ALL_BLOGS_CHANGE
        Since:
        7.9.0
    • Method Detail

      • values

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

        public static JournalEntryType 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
      • optionalFromId

        public static Optional<JournalEntryType> optionalFromId​(String name)
        Returns:
        an Optional<JournalEntry> corresponding to the supplied string, or an empty Optional
        Since:
        7.9.0