1 40 41 package org.jfree.data; 42 43 52 public interface MeterDataset extends Value, Dataset { 53 54 55 public static final int NORMAL_DATA = 0; 56 57 58 public static final int WARNING_DATA = 1; 59 60 61 public static final int CRITICAL_DATA = 2; 62 63 64 public static final int FULL_DATA = 3; 65 66 71 public Number getMinimumValue(); 72 73 78 public Number getMaximumValue(); 79 80 85 public Number getMinimumNormalValue(); 86 87 92 public Number getMaximumNormalValue(); 93 94 99 public Number getMinimumWarningValue(); 100 101 106 public Number getMaximumWarningValue(); 107 108 113 public Number getMinimumCriticalValue(); 114 115 120 public Number getMaximumCriticalValue(); 121 122 127 public boolean isValueValid(); 128 129 134 public String getUnits(); 135 136 141 public int getBorderType(); 142 143 } 144 | Popular Tags |