Ejemplo n.º 1
0
 /**
  * Get names of supported compression algorithms. The names are acceptable by HFile.Writer.
  *
  * @return Array of strings, each represents a supported compression algorithm. Currently, the
  *     following compression algorithms are supported.
  *     <ul>
  *       <li>"none" - No compression.
  *       <li>"gz" - GZIP compression.
  *     </ul>
  */
 public static String[] getSupportedCompressionAlgorithms() {
   return Compression.getSupportedAlgorithms();
 }