Package io.vertx.quiz.cv
Enum QzApi
- java.lang.Object
-
- java.lang.Enum<QzApi>
-
- io.vertx.quiz.cv.QzApi
-
- All Implemented Interfaces:
Serializable,Comparable<QzApi>
public enum QzApi extends Enum<QzApi>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DEFINEDDELETE_ACTOR_KEYGET_ACTOR_KEYPOST_ACTORPOST_ACTOR_EXISTINGPOST_ACTOR_MISSINGPOST_ACTOR_SEARCHPOST_BATCH_DELETEPOST_BATCH_UPDATEPUT_ACTOR_KEY
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static QzApivalueOf(String name)Returns the enum constant of this type with the specified name.static QzApi[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
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 nameNullPointerException- if the argument is null
-
-