blob: fb29bf138c2b6172a800dea9f843287c5a1b3188 [file] [log] [blame]
J. Duke319a3b92007-12-01 00:00:00 +00001/*
2 * Copyright 2003-2006 Sun Microsystems, Inc. All Rights Reserved.
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * This code is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License version 2 only, as
7 * published by the Free Software Foundation. Sun designates this
8 * particular file as subject to the "Classpath" exception as provided
9 * by Sun in the LICENSE file that accompanied this code.
10 *
11 * This code is distributed in the hope that it will be useful, but WITHOUT
12 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
14 * version 2 for more details (a copy is included in the LICENSE file that
15 * accompanied this code).
16 *
17 * You should have received a copy of the GNU General Public License version
18 * 2 along with this work; if not, write to the Free Software Foundation,
19 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
20 *
21 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
22 * CA 95054 USA or visit www.sun.com if you need additional information or
23 * have any questions.
24 */
25
26package sun.management.snmp.jvmmib;
27
28//
29// Generated by mibgen version 5.0 (06/02/03) when compiling JVM-MANAGEMENT-MIB.
30//
31
32// java imports
33//
34import java.io.Serializable;
35import java.util.Hashtable;
36
37// RI imports
38//
39import com.sun.jmx.snmp.Enumerated;
40
41/**
42 * The class is used for representing "JvmClassesVerboseLevel".
43 */
44public class EnumJvmClassesVerboseLevel extends Enumerated implements Serializable {
45
46 protected static Hashtable<Integer, String> intTable =
47 new Hashtable<Integer, String>();
48 protected static Hashtable<String, Integer> stringTable =
49 new Hashtable<String, Integer>();
50 static {
51 intTable.put(new Integer(2), "verbose");
52 intTable.put(new Integer(1), "silent");
53 stringTable.put("verbose", new Integer(2));
54 stringTable.put("silent", new Integer(1));
55 }
56
57 public EnumJvmClassesVerboseLevel(int valueIndex) throws IllegalArgumentException {
58 super(valueIndex);
59 }
60
61 public EnumJvmClassesVerboseLevel(Integer valueIndex) throws IllegalArgumentException {
62 super(valueIndex);
63 }
64
65 public EnumJvmClassesVerboseLevel() throws IllegalArgumentException {
66 super();
67 }
68
69 public EnumJvmClassesVerboseLevel(String x) throws IllegalArgumentException {
70 super(x);
71 }
72
73 protected Hashtable getIntTable() {
74 return intTable ;
75 }
76
77 protected Hashtable getStringTable() {
78 return stringTable ;
79 }
80
81}