1 11 12 13 package com.sun.jmx.snmp; 14 15 16 17 25 26 public class SnmpGauge extends SnmpUnsignedInt { 27 28 36 public SnmpGauge(int v) throws IllegalArgumentException { 37 super(v) ; 38 } 39 40 46 public SnmpGauge(Integer v) throws IllegalArgumentException { 47 super(v) ; 48 } 49 50 56 public SnmpGauge(long v) throws IllegalArgumentException { 57 super(v) ; 58 } 59 60 66 public SnmpGauge(Long v) throws IllegalArgumentException { 67 super(v) ; 68 } 69 70 76 final public String getTypeName() { 77 return name ; 78 } 79 80 85 final static String name = "Gauge32" ; 86 } 87 | Popular Tags |