| 
 | Apache Tomcat 6.0.53 | ||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | ||||||||
java.lang.Objectjava.lang.Enum<SendfileState>
org.apache.tomcat.util.net.SendfileState
public enum SendfileState
| Enum Constant Summary | |
|---|---|
| DONEThe file has been fully sent. | |
| ERRORSomething went wrong. | |
| PENDINGThe sending of the file has started but has not completed. | |
| Method Summary | |
|---|---|
| static SendfileState | valueOf(java.lang.String name)Returns the enum constant of this type with the specified name. | 
| static SendfileState[] | values()Returns an array containing the constants of this enum type, in the order they're declared. | 
| Methods inherited from class java.lang.Enum | 
|---|
| clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf | 
| Methods inherited from class java.lang.Object | 
|---|
| finalize, getClass, notify, notifyAll, wait, wait, wait | 
| Enum Constant Detail | 
|---|
public static final SendfileState PENDING
public static final SendfileState DONE
public static final SendfileState ERROR
| Method Detail | 
|---|
public static final SendfileState[] values()
for(SendfileState c : SendfileState.values())
        System.out.println(c);
public static SendfileState valueOf(java.lang.String name)
name - the name of the enum constant to be returned.
java.lang.IllegalArgumentException - if this enum type has no constant
with the specified name| 
 | Apache Tomcat 6.0.53 | ||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | ||||||||