1 /** 2 * Copyright (C) 2010-14 pvmanager developers. See COPYRIGHT.TXT 3 * All rights reserved. Use is subject to license terms. See LICENSE.TXT 4 */ 5 package org.epics.vtype; 6 7 /** 8 * Scalar number with alarm, timestamp, display and control information. 9 * <p> 10 * This class allows to use any scalar number (i.e. {@link VInt} or 11 * {@link VDouble}) through the same interface. 12 * 13 * @author carcassi 14 */ 15 public interface VNumber extends Scalar, Alarm, Time, Display, VType { 16 17 /** 18 * The numeric value. 19 * 20 * @return the value 21 */ 22 @Override 23 Number getValue(); 24 }