Enum 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.

    • When activated with a standard subscription license file, PDFxStream's telemetry is On by default or can be set to a Debug mode if desired.
    • When activated with a perpetual license file, PDFxStream's telemetry may also be turned Off if desired.
    • 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 name
        NullPointerException - if the argument is null