1 11 12 13 package com.sun.jmx.snmp; 14 15 16 17 25 26 public class SnmpCounter extends SnmpUnsignedInt { 27 28 36 public SnmpCounter(int v) throws IllegalArgumentException { 37 super(v) ; 38 } 39 40 46 public SnmpCounter(Integer v) throws IllegalArgumentException { 47 super(v) ; 48 } 49 50 56 public SnmpCounter(long v) throws IllegalArgumentException { 57 super(v) ; 58 } 59 60 66 public SnmpCounter(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 = "Counter32" ; 86 } 87 | Popular Tags |