public enum VertxParameter extends Enum<VertxParameter>
| Enum Constant and Description |
|---|
HEADER_PARAM |
PATH_PARAM |
QUERY_PARAM |
| Modifier and Type | Method and Description |
|---|---|
static boolean |
isParameter(org.jboss.jandex.DotName annotationName) |
static VertxParameter |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static VertxParameter[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final VertxParameter PATH_PARAM
public static final VertxParameter QUERY_PARAM
public static final VertxParameter HEADER_PARAM
public static VertxParameter[] values()
for (VertxParameter c : VertxParameter.values()) System.out.println(c);
public static VertxParameter 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 static boolean isParameter(org.jboss.jandex.DotName annotationName)
Copyright © 2018–2021. All rights reserved.