Enum QzApi

    • Enum Constant Detail

      • POST_ACTOR

        public static final QzApi POST_ACTOR
      • GET_ACTOR_KEY

        public static final QzApi GET_ACTOR_KEY
      • PUT_ACTOR_KEY

        public static final QzApi PUT_ACTOR_KEY
      • DELETE_ACTOR_KEY

        public static final QzApi DELETE_ACTOR_KEY
      • POST_ACTOR_SEARCH

        public static final QzApi POST_ACTOR_SEARCH
      • POST_ACTOR_MISSING

        public static final QzApi POST_ACTOR_MISSING
      • POST_ACTOR_EXISTING

        public static final QzApi POST_ACTOR_EXISTING
      • POST_BATCH_UPDATE

        public static final QzApi POST_BATCH_UPDATE
      • POST_BATCH_DELETE

        public static final QzApi POST_BATCH_DELETE
      • DEFINED

        public static final QzApi DEFINED
    • Method Detail

      • values

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

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