Enum R.Status

java.lang.Object
java.lang.Enum<R.Status>
io.milvus.param.R.Status
All Implemented Interfaces:
Serializable, Comparable<R.Status>, java.lang.constant.Constable
Enclosing class:
R<T>

public static enum R.Status extends Enum<R.Status>
Represents server and client side status code
  • Enum Constant Details

    • Success

      public static final R.Status Success
    • UnexpectedError

      public static final R.Status UnexpectedError
    • ConnectFailed

      public static final R.Status ConnectFailed
    • PermissionDenied

      public static final R.Status PermissionDenied
    • CollectionNotExists

      public static final R.Status CollectionNotExists
    • IllegalArgument

      public static final R.Status IllegalArgument
    • IllegalDimension

      public static final R.Status IllegalDimension
    • IllegalIndexType

      public static final R.Status IllegalIndexType
    • IllegalCollectionName

      public static final R.Status IllegalCollectionName
    • IllegalTOPK

      public static final R.Status IllegalTOPK
    • IllegalRowRecord

      public static final R.Status IllegalRowRecord
    • IllegalVectorID

      public static final R.Status IllegalVectorID
    • IllegalSearchResult

      public static final R.Status IllegalSearchResult
    • FileNotFound

      public static final R.Status FileNotFound
    • MetaFailed

      public static final R.Status MetaFailed
    • CacheFailed

      public static final R.Status CacheFailed
    • CannotCreateFolder

      public static final R.Status CannotCreateFolder
    • CannotCreateFile

      public static final R.Status CannotCreateFile
    • CannotDeleteFolder

      public static final R.Status CannotDeleteFolder
    • CannotDeleteFile

      public static final R.Status CannotDeleteFile
    • BuildIndexError

      public static final R.Status BuildIndexError
    • IllegalNLIST

      public static final R.Status IllegalNLIST
    • IllegalMetricType

      public static final R.Status IllegalMetricType
    • OutOfMemory

      public static final R.Status OutOfMemory
    • IndexNotExist

      public static final R.Status IndexNotExist
    • EmptyCollection

      public static final R.Status EmptyCollection
    • DDRequestRace

      public static final R.Status DDRequestRace
    • RpcError

      public static final R.Status RpcError
    • ClientNotConnected

      public static final R.Status ClientNotConnected
    • Unknown

      public static final R.Status Unknown
    • VersionMismatch

      public static final R.Status VersionMismatch
    • ParamError

      public static final R.Status ParamError
    • IllegalResponse

      public static final R.Status IllegalResponse
  • Method Details

    • values

      public static R.Status[] values()
      Returns an array containing the constants of this enum type, in the order they are declared.
      Returns:
      an array containing the constants of this enum type, in the order they are declared
    • valueOf

      public static R.Status 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
    • valueOf

      public static R.Status valueOf(int val)
      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:
      val - 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
    • getCode

      public int getCode()