Enum StreamableResourceProcessing

    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
      COMPRESSION_DISABLED
      As with COMPRESSION_ENABLED, but the final compression stage (and compression cache) is skipped.
      COMPRESSION_ENABLED
      The default behavior when the client supports compression, and an individual (non-aggregated) resources is being accessed.
      FOR_AGGREGATION
      Turns off all caching and minification of the resource, which is appropriate when the individual resource will be aggregated with other resources to form a virtual composite.
    • Method Summary

      All Methods Static Methods Concrete Methods 
      Modifier and Type Method Description
      static StreamableResourceProcessing valueOf​(java.lang.String name)
      Returns the enum constant of this type with the specified name.
      static StreamableResourceProcessing[] values()
      Returns an array containing the constants of this enum type, in the order they are declared.
      • Methods inherited from class java.lang.Enum

        clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
      • Methods inherited from class java.lang.Object

        getClass, notify, notifyAll, wait, wait, wait
    • Enum Constant Detail

      • COMPRESSION_ENABLED

        public static final StreamableResourceProcessing COMPRESSION_ENABLED
        The default behavior when the client supports compression, and an individual (non-aggregated) resources is being accessed. The resource may be minimized and both the compressed and uncompressed versions may be cached.
    • Method Detail

      • values

        public static StreamableResourceProcessing[] 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 (StreamableResourceProcessing c : StreamableResourceProcessing.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static StreamableResourceProcessing valueOf​(java.lang.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:
        java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
        java.lang.NullPointerException - if the argument is null