Package net.webpdf.wsclient.openapi
Enum ApplicationConfigCompressPortalSettings.CompressProfileEnum
- java.lang.Object
-
- java.lang.Enum<ApplicationConfigCompressPortalSettings.CompressProfileEnum>
-
- net.webpdf.wsclient.openapi.ApplicationConfigCompressPortalSettings.CompressProfileEnum
-
- All Implemented Interfaces:
Serializable,Comparable<ApplicationConfigCompressPortalSettings.CompressProfileEnum>
- Enclosing class:
- ApplicationConfigCompressPortalSettings
public static enum ApplicationConfigCompressPortalSettings.CompressProfileEnum extends Enum<ApplicationConfigCompressPortalSettings.CompressProfileEnum>
Sets the profile for automatic document compression and thus defines whether compression should be applied when saving. * always = PDF documents should always be compressed when saved. * never = PDF documents should not be automatically compressed. * recompress = PDF documents should only be compressed automatically if they were already compressed previously.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ALWAYSNEVERRECOMPRESS
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ApplicationConfigCompressPortalSettings.CompressProfileEnumfromValue(String value)StringgetValue()StringtoString()static ApplicationConfigCompressPortalSettings.CompressProfileEnumvalueOf(String name)Returns the enum constant of this type with the specified name.static ApplicationConfigCompressPortalSettings.CompressProfileEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ALWAYS
public static final ApplicationConfigCompressPortalSettings.CompressProfileEnum ALWAYS
-
NEVER
public static final ApplicationConfigCompressPortalSettings.CompressProfileEnum NEVER
-
RECOMPRESS
public static final ApplicationConfigCompressPortalSettings.CompressProfileEnum RECOMPRESS
-
-
Method Detail
-
values
public static ApplicationConfigCompressPortalSettings.CompressProfileEnum[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (ApplicationConfigCompressPortalSettings.CompressProfileEnum c : ApplicationConfigCompressPortalSettings.CompressProfileEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ApplicationConfigCompressPortalSettings.CompressProfileEnum valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
getValue
public String getValue()
-
toString
public String toString()
- Overrides:
toStringin classEnum<ApplicationConfigCompressPortalSettings.CompressProfileEnum>
-
fromValue
public static ApplicationConfigCompressPortalSettings.CompressProfileEnum fromValue(String value)
-
-