public enum SendfileState extends Enum<SendfileState>
| Enum Constant and Description | 
|---|
| DONEThe file has been fully sent. | 
| ERRORSomething went wrong. | 
| PENDINGThe sending of the file has started but has not completed. | 
| Modifier and Type | Method and Description | 
|---|---|
| static SendfileState | valueOf(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 are declared. | 
public static final SendfileState PENDING
public static final SendfileState DONE
public static final SendfileState ERROR
public static SendfileState[] values()
for (SendfileState c : SendfileState.values()) System.out.println(c);
public static SendfileState 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 © 2000-2020 Apache Software Foundation. All Rights Reserved.