@Title(value="Jetty") public enum JettyConf extends Enum<JettyConf>
| Enum Constant and Description |
|---|
CONTEXT_PATH |
PORT |
SHUTDOWN_TOKEN |
STOP_TIMEOUT |
| Modifier and Type | Method and Description |
|---|---|
static JettyConf |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static JettyConf[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@Path(value="oxalis.jetty.port") @DefaultValue(value="8080") public static final JettyConf PORT
@Path(value="oxalis.jetty.context_path") @DefaultValue(value="/") public static final JettyConf CONTEXT_PATH
@Path(value="oxalis.jetty.shutdown_token") @Nullable public static final JettyConf SHUTDOWN_TOKEN
@Path(value="oxalis.jetty.stop_timeout") @DefaultValue(value="10000") public static final JettyConf STOP_TIMEOUT
public static JettyConf[] values()
for (JettyConf c : JettyConf.values()) System.out.println(c);
public static JettyConf 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 nullCopyright © 2022 NorStella. All rights reserved.