Enum Relation

  • All Implemented Interfaces:
    java.io.Serializable, java.lang.Comparable<Relation>

    public enum Relation
    extends java.lang.Enum<Relation>
    • Enum Constant Detail

      • SELF

        public static final Relation SELF
      • 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
      • ADD_DATA

        public static final Relation ADD_DATA
    • 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​(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