public static enum FCGI.FrameType extends Enum<FCGI.FrameType>
Enum Constant and Description |
---|
ABORT_REQUEST |
BEGIN_REQUEST |
DATA |
END_REQUEST |
GET_VALUES |
GET_VALUES_RESULT |
PARAMS |
STDERR |
STDIN |
STDOUT |
Modifier and Type | Field and Description |
---|---|
int |
code |
Modifier and Type | Method and Description |
---|---|
static FCGI.FrameType |
from(int code) |
static FCGI.FrameType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FCGI.FrameType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FCGI.FrameType BEGIN_REQUEST
public static final FCGI.FrameType ABORT_REQUEST
public static final FCGI.FrameType END_REQUEST
public static final FCGI.FrameType PARAMS
public static final FCGI.FrameType STDIN
public static final FCGI.FrameType STDOUT
public static final FCGI.FrameType STDERR
public static final FCGI.FrameType DATA
public static final FCGI.FrameType GET_VALUES
public static final FCGI.FrameType GET_VALUES_RESULT
public static FCGI.FrameType[] values()
for (FCGI.FrameType c : FCGI.FrameType.values()) System.out.println(c);
public static FCGI.FrameType 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 FCGI.FrameType from(int code)
Copyright © 1995-2015 Webtide. All Rights Reserved.