Enum Relation

    • Enum Constant Detail

      • SELF

        public static final Relation SELF
      • SELF_UPDATE

        public static final Relation SELF_UPDATE
      • SELF_DELETE

        public static final Relation SELF_DELETE
      • ADD_CONTENT

        public static final Relation ADD_CONTENT
      • SEND

        public static final Relation SEND
      • SEARCH

        public static final Relation SEARCH
      • AUTOCOMPLETE

        public static final Relation AUTOCOMPLETE
      • CREATE_MESSAGE

        public static final Relation CREATE_MESSAGE
      • API_DOCUMENTATION

        public static final Relation API_DOCUMENTATION
      • GET_ENCRYPTION_KEY

        public static final Relation GET_ENCRYPTION_KEY
      • GET_PRINT_ENCRYPTION_CERTIFICATE

        public static final Relation GET_PRINT_ENCRYPTION_CERTIFICATE
      • IDENTIFY_RECIPIENT

        public static final Relation IDENTIFY_RECIPIENT
      • IDENTIFY_RECIPIENT_WITH_ENCRYPTION_KEY

        public static final Relation IDENTIFY_RECIPIENT_WITH_ENCRYPTION_KEY
      • DOCUMENT_EVENTS

        public static final Relation DOCUMENT_EVENTS
      • UNSUPPORTED

        public static final Relation UNSUPPORTED
      • GET_DOCUMENT_CONTENT

        public static final Relation GET_DOCUMENT_CONTENT
      • GET_SENDER_INFORMATION

        public static final Relation GET_SENDER_INFORMATION
      • DUPLICATE_DOCUMENT

        public static final Relation DUPLICATE_DOCUMENT
      • GET_INBOX

        public static final Relation GET_INBOX
      • ADD_DATA

        public static final Relation ADD_DATA
      • ARCHIVE_DOCUMENTS

        public static final Relation ARCHIVE_DOCUMENTS
      • GET_ARCHIVES

        public static final Relation GET_ARCHIVES
      • NEXT_DOCUMENTS

        public static final Relation NEXT_DOCUMENTS
      • GET_ARCHIVE_DOCUMENTS_BY_REFERENCEID

        public static final Relation GET_ARCHIVE_DOCUMENTS_BY_REFERENCEID
      • GET_ARCHIVE_DOCUMENT_BY_UUID

        public static final Relation GET_ARCHIVE_DOCUMENT_BY_UUID
      • DELETE_ARCHIVE_DOCUMENT_BY_UUID

        public static final Relation DELETE_ARCHIVE_DOCUMENT_BY_UUID
      • GET_ARCHIVE_DOCUMENT_CONTENT

        public static final Relation GET_ARCHIVE_DOCUMENT_CONTENT
      • GET_ARCHIVE_DOCUMENT_CONTENT_STREAM

        public static final Relation GET_ARCHIVE_DOCUMENT_CONTENT_STREAM
      • ADD_UNIQUE_UUID

        public static final Relation ADD_UNIQUE_UUID
      • CREATE_BATCH

        public static final Relation CREATE_BATCH
      • GET_BATCH

        public static final Relation GET_BATCH
      • COMPLETE_BATCH

        public static final Relation COMPLETE_BATCH
      • CREATE_OR_ACTIVATE_USER_ACCOUNT

        public static final Relation CREATE_OR_ACTIVATE_USER_ACCOUNT
      • ADD_TAG

        public static final Relation ADD_TAG
      • REMOVE_TAG

        public static final Relation REMOVE_TAG
      • GET_TAGS

        public static final Relation GET_TAGS
    • Method Detail

      • values

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

        public static Relation 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