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

com.twosigma.webtau.http.datanode.CompositeKeyDataNodeValueExtractor Maven / Gradle / Ivy

There is a newer version: 1.20
Show newest version
package com.twosigma.webtau.http.datanode;

import com.twosigma.webtau.data.table.header.CompositeKeyUnderlyingValueExtractor;

public class CompositeKeyDataNodeValueExtractor implements CompositeKeyUnderlyingValueExtractor {
    @Override
    public boolean handles(Object value) {
        return value instanceof DataNode;
    }

    @Override
    public Object extract(Object value) {
        return ((DataNode)value).get();
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy