// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root. /** * Class representing a byte field in the result set * */ package com.yahoo.prelude.fastsearch; import com.yahoo.search.result.NanNumber; import com.yahoo.data.access.Inspector; /** * @author Bjørn Borud */ public class ByteField extends DocsumField { static final byte EMPTY_VALUE = Byte.MIN_VALUE; public ByteField(String name) { super(name); } private Object convert(byte value) { if (value == EMPTY_VALUE) { return NanNumber.NaN; } else { return value; } } @Override public Object convert(Inspector value) { return convert((byte)value.asLong(EMPTY_VALUE)); } }