Enum ObjectType

    • Enum Constant Detail

      • ACCOUNT_EMAIL

        public static final ObjectType ACCOUNT_EMAIL
      • BLOCKING_STATES

        public static final ObjectType BLOCKING_STATES
      • CUSTOM_FIELD

        public static final ObjectType CUSTOM_FIELD
      • TRANSACTION

        public static final ObjectType TRANSACTION
      • INVOICE_ITEM

        public static final ObjectType INVOICE_ITEM
      • INVOICE_PAYMENT

        public static final ObjectType INVOICE_PAYMENT
      • SUBSCRIPTION

        public static final ObjectType SUBSCRIPTION
      • SUBSCRIPTION_EVENT

        public static final ObjectType SUBSCRIPTION_EVENT
      • SERVICE_BROADCAST

        public static final ObjectType SERVICE_BROADCAST
      • PAYMENT_ATTEMPT

        public static final ObjectType PAYMENT_ATTEMPT
      • PAYMENT_METHOD

        public static final ObjectType PAYMENT_METHOD
      • TAG_DEFINITION

        public static final ObjectType TAG_DEFINITION
      • TENANT_KVS

        public static final ObjectType TENANT_KVS
    • Method Detail

      • values

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

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