Enum ClientTransactionPolicy

    • Method Detail

      • values

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

        public static ClientTransactionPolicy 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
      • failIfTransactionPresent

        public boolean failIfTransactionPresent()
        Determine whether this transaction policy causes a failure when a client-side transaction context is present.
        Returns:
        true if the policy would fail when a transaction is present, false otherwise
      • failIfTransactionAbsent

        public boolean failIfTransactionAbsent()
        Determine whether this transaction policy causes a failure when a client-side transaction context is absent.
        Returns:
        true if the policy would fail when a transaction is absent, false otherwise
      • propagate

        public boolean propagate()
        Determine whether this transaction policy causes the client-side transaction context (if any) to be propagated to invocations.
        Returns:
        true if the transaction is propagated by this policy, false otherwise
      • isFull

        public static boolean isFull​(EnumSet<ClientTransactionPolicy> set)
        Determine whether the given set is fully populated (or "full"), meaning it contains all possible values.
        Parameters:
        set - the set
        Returns:
        true if the set is full, false otherwise
      • in

        public boolean in​(ClientTransactionPolicy v1)
        Determine whether this instance is equal to one of the given instances.
        Parameters:
        v1 - the first instance
        Returns:
        true if one of the instances matches this one, false otherwise
      • in

        public boolean in​(ClientTransactionPolicy v1,
                          ClientTransactionPolicy v2)
        Determine whether this instance is equal to one of the given instances.
        Parameters:
        v1 - the first instance
        v2 - the second instance
        Returns:
        true if one of the instances matches this one, false otherwise
      • in

        public boolean in​(ClientTransactionPolicy... values)
        Determine whether this instance is equal to one of the given instances.
        Parameters:
        values - the possible values
        Returns:
        true if one of the instances matches this one, false otherwise