org.wildfly.extras.creaper.commands.undertow
Enum UndertowListenerType

java.lang.Object
  extended by java.lang.Enum<UndertowListenerType>
      extended by org.wildfly.extras.creaper.commands.undertow.UndertowListenerType
All Implemented Interfaces:
Serializable, Comparable<UndertowListenerType>

public enum UndertowListenerType
extends Enum<UndertowListenerType>


Enum Constant Summary
AJP_LISTENER
           
HTTP_LISTENER
           
HTTPS_LISTENER
           
 
Method Summary
 String listenerTypeName()
           
static UndertowListenerType valueOf(String name)
          Returns the enum constant of this type with the specified name.
static UndertowListenerType[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

HTTP_LISTENER

public static final UndertowListenerType HTTP_LISTENER

HTTPS_LISTENER

public static final UndertowListenerType HTTPS_LISTENER

AJP_LISTENER

public static final UndertowListenerType AJP_LISTENER
Method Detail

values

public static UndertowListenerType[] 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 (UndertowListenerType c : UndertowListenerType.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static UndertowListenerType 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

listenerTypeName

public String listenerTypeName()


Copyright © 2016. All rights reserved.