Enum ResolveStatus

    • Enum Constant Detail

      • INITIALIZED

        public static final ResolveStatus INITIALIZED
        Enum value Initialized.
      • RESOLVED

        public static final ResolveStatus RESOLVED
        Enum value Resolved.
      • INVALID_SYNTAX

        public static final ResolveStatus INVALID_SYNTAX
        Enum value InvalidSyntax.
      • MSINOT_ENABLED

        public static final ResolveStatus MSINOT_ENABLED
        Enum value MSINotEnabled.
      • VAULT_NOT_FOUND

        public static final ResolveStatus VAULT_NOT_FOUND
        Enum value VaultNotFound.
      • SECRET_NOT_FOUND

        public static final ResolveStatus SECRET_NOT_FOUND
        Enum value SecretNotFound.
      • SECRET_VERSION_NOT_FOUND

        public static final ResolveStatus SECRET_VERSION_NOT_FOUND
        Enum value SecretVersionNotFound.
      • ACCESS_TO_KEY_VAULT_DENIED

        public static final ResolveStatus ACCESS_TO_KEY_VAULT_DENIED
        Enum value AccessToKeyVaultDenied.
      • OTHER_REASONS

        public static final ResolveStatus OTHER_REASONS
        Enum value OtherReasons.
      • FETCH_TIMED_OUT

        public static final ResolveStatus FETCH_TIMED_OUT
        Enum value FetchTimedOut.
      • UNAUTHORIZED_CLIENT

        public static final ResolveStatus UNAUTHORIZED_CLIENT
        Enum value UnauthorizedClient.
    • Method Detail

      • values

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

        public static ResolveStatus 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
      • fromString

        public static ResolveStatus fromString​(String value)
        Parses a serialized value to a ResolveStatus instance.
        Parameters:
        value - the serialized value to parse.
        Returns:
        the parsed ResolveStatus object, or null if unable to parse.