Package com.snowtide.pdf
Enum Configuration.TelemetryMode
- java.lang.Object
-
- java.lang.Enum<Configuration.TelemetryMode>
-
- com.snowtide.pdf.Configuration.TelemetryMode
-
- All Implemented Interfaces:
Serializable
,Comparable<Configuration.TelemetryMode>
- Enclosing class:
- Configuration
public static enum Configuration.TelemetryMode extends Enum<Configuration.TelemetryMode>
PDFxStream makes very limited use of remote telemetry, strictly to ensure licensing compliance and to aid Snowtide's technical support operations.The only data that is ever sent from licensed PDFxStream installations are properties found in the license file provided to you, and stack traces produced by PDFxStream. No documents, document contents, or extracted data is ever captured by PDFxStream.
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static Configuration.TelemetryMode
valueOf(String name)
Returns the enum constant of this type with the specified name.static Configuration.TelemetryMode[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
On
public static final Configuration.TelemetryMode On
-
Off
public static final Configuration.TelemetryMode Off
-
Debug
public static final Configuration.TelemetryMode Debug
Debug
telemetry mode is the same as#On
, but the full payload of all telemetry communications is logged for your inspection, along with any errors in handling the response from PDFxStream's telemetry backend.
-
-
Method Detail
-
values
public static Configuration.TelemetryMode[] 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 (Configuration.TelemetryMode c : Configuration.TelemetryMode.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Configuration.TelemetryMode 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
-
-