Example usage for org.apache.hadoop.io.compress GzipCodec GzipCodec

List of usage examples for org.apache.hadoop.io.compress GzipCodec GzipCodec

Introduction

In this page you can find the example usage for org.apache.hadoop.io.compress GzipCodec GzipCodec.

Prototype

GzipCodec

Source Link

Usage

From source file:org.apache.jena.hadoop.rdf.io.input.compressed.jsonld.GZippedJsonLDTripleInputTest.java

License:Apache License

/**
 * Creates new tests
 */
public GZippedJsonLDTripleInputTest() {
    super(".jsonld.gz", new GzipCodec());
}

From source file:org.apache.jena.hadoop.rdf.io.input.compressed.nquads.GZippedNQuadsInputTest.java

License:Apache License

/**
 * Creates new tests
 */
public GZippedNQuadsInputTest() {
    super(".nq.gz", new GzipCodec());
}

From source file:org.apache.jena.hadoop.rdf.io.input.compressed.nquads.GZippedWholeFileNQuadsInputTest.java

License:Apache License

/**
 * Creates new tests
 */
public GZippedWholeFileNQuadsInputTest() {
    super(".nq.gz", new GzipCodec());
}

From source file:org.apache.jena.hadoop.rdf.io.input.compressed.ntriples.GZippedBlockedNTriplesInput.java

License:Apache License

/**
 * Creates new tests
 */
public GZippedBlockedNTriplesInput() {
    super(".nt.gz", new GzipCodec());
}

From source file:org.apache.jena.hadoop.rdf.io.input.compressed.ntriples.GZippedNTriplesInputTest.java

License:Apache License

/**
 * Creates new tests
 */
public GZippedNTriplesInputTest() {
    super(".nt.gz", new GzipCodec());
}

From source file:org.apache.jena.hadoop.rdf.io.input.compressed.ntriples.GZippedWholeFileNTriplesInputTest.java

License:Apache License

/**
 * Creates new tests
 */
public GZippedWholeFileNTriplesInputTest() {
    super(".nt.gz", new GzipCodec());
}

From source file:org.apache.jena.hadoop.rdf.io.input.compressed.rdfjson.GZippedRdfJsonInputTest.java

License:Apache License

/**
 * Creates new tests
 */
public GZippedRdfJsonInputTest() {
    super(".rj.gz", new GzipCodec());
}

From source file:org.apache.jena.hadoop.rdf.io.input.compressed.rdfxml.GZippedRdfXmlInputTest.java

License:Apache License

/**
 * Creates new tests
 */
public GZippedRdfXmlInputTest() {
    super(".rdf.gz", new GzipCodec());
}

From source file:org.apache.jena.hadoop.rdf.io.input.compressed.thrift.GZippedThriftQuadInputTest.java

License:Apache License

/**
 * Creates new tests
 */
public GZippedThriftQuadInputTest() {
    super(".trdf.gz", new GzipCodec());
}

From source file:org.apache.jena.hadoop.rdf.io.input.compressed.thrift.GZippedThriftTripleInputTest.java

License:Apache License

/**
 * Creates new tests
 */
public GZippedThriftTripleInputTest() {
    super(".trdf.gz", new GzipCodec());
}