/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.apache.giraph.hive.values; import org.apache.hadoop.io.Writable; import com.facebook.hiveio.record.HiveWritableRecord; /** * Interface for writing Vertex / Edge values from Hive records * * @param <T> Value type */ public interface HiveValueWriter<T extends Writable> { /** * Write value to record * * @param value the value * @param record Hive record */ void write(T value, HiveWritableRecord record); /** * Null implementation that does nothing * * @param <W> Writable type */ public static class Null<W extends Writable> implements HiveValueWriter<W> { /** Singleton */ private static final Null INSTANCE = new Null(); /** * Get singleton * * @return singleton instance */ public static Null get() { return INSTANCE; } @Override public void write(W value, HiveWritableRecord record) { } } }