All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.ontology2.bakemono.primitiveTriples.ProjectSubject Maven / Gradle / Ivy

There is a newer version: 3.2
Show newest version
package com.ontology2.bakemono.primitiveTriples;

import com.google.common.base.Function;
import org.apache.hadoop.io.Text;

/**
 * Created with IntelliJ IDEA.
 * User: paul_000
 * Date: 11/12/13
 * Time: 1:16 PM
 * To change this template use File | Settings | File Templates.
 */
public class ProjectSubject implements Function {
    @Override
    public Text apply(PrimitiveTriple t) {
            return new Text(t.getSubject());
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy