public static enum GZIPOutInterceptor.UseGzip extends Enum<GZIPOutInterceptor.UseGzip>
| Modifier and Type | Method and Description | 
|---|---|
| static GZIPOutInterceptor.UseGzip | valueOf(String name)Returns the enum constant of this type with the specified name. | 
| static GZIPOutInterceptor.UseGzip[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final GZIPOutInterceptor.UseGzip NO
public static final GZIPOutInterceptor.UseGzip YES
public static final GZIPOutInterceptor.UseGzip FORCE
public static GZIPOutInterceptor.UseGzip[] values()
for (GZIPOutInterceptor.UseGzip c : GZIPOutInterceptor.UseGzip.values()) System.out.println(c);
public static GZIPOutInterceptor.UseGzip 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 nullApache CXF