@Namespace(value="arrow::flight") public static enum arrow_flight.FlightStatusCode extends Enum<arrow_flight.FlightStatusCode>
Enum Constant and Description |
---|
Cancelled
A request was cancelled.
|
Failed
A request failed for some other reason
|
Internal
An implementation error has occurred.
|
TimedOut
A request timed out.
|
Unauthenticated
We are not authenticated to the remote service.
|
Unauthorized
We do not have permission to make this request.
|
Unavailable
The remote service cannot handle this request at the moment.
|
Modifier and Type | Field and Description |
---|---|
byte |
value |
Modifier and Type | Method and Description |
---|---|
arrow_flight.FlightStatusCode |
intern() |
String |
toString() |
static arrow_flight.FlightStatusCode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static arrow_flight.FlightStatusCode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final arrow_flight.FlightStatusCode Internal
public static final arrow_flight.FlightStatusCode TimedOut
public static final arrow_flight.FlightStatusCode Cancelled
public static final arrow_flight.FlightStatusCode Unauthenticated
public static final arrow_flight.FlightStatusCode Unauthorized
public static final arrow_flight.FlightStatusCode Unavailable
public static final arrow_flight.FlightStatusCode Failed
public static arrow_flight.FlightStatusCode[] values()
for (arrow_flight.FlightStatusCode c : arrow_flight.FlightStatusCode.values()) System.out.println(c);
public static arrow_flight.FlightStatusCode valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullpublic arrow_flight.FlightStatusCode intern()
public String toString()
toString
in class Enum<arrow_flight.FlightStatusCode>
Copyright © 2022. All rights reserved.