public enum StandardFilter extends Enum<StandardFilter>
AsyncServerBootstrap, 
ServerBootstrap| Enum Constant and Description | 
|---|
| EXPECT_CONTINUE | 
| MAIN_HANDLER | 
| Modifier and Type | Method and Description | 
|---|---|
| static StandardFilter | valueOf(String name)Returns the enum constant of this type with the specified name. | 
| static StandardFilter[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final StandardFilter EXPECT_CONTINUE
public static final StandardFilter MAIN_HANDLER
public static StandardFilter[] values()
for (StandardFilter c : StandardFilter.values()) System.out.println(c);
public static StandardFilter 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 © 2005–2022 The Apache Software Foundation. All rights reserved.