⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 snmpvalue.java

📁 Mobile 应用程序使用 Java Micro Edition (Java ME) 平台
💻 JAVA
字号:
/* * @(#)file      SnmpValue.java * @(#)author    Sun Microsystems, Inc. * @(#)version   4.10 * @(#)date      08/09/12 * * Copyright 2006 Sun Microsystems, Inc. All rights reserved. * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. * */package com.sun.jmx.snmp;import java.io.Serializable;/** * Is an abstract representation of an SNMP Value. * All classes provided for dealing with SNMP types should derive from this * class. * * <p><b>This API is a Sun Microsystems internal API  and is subject  * to change without notice.</b></p> * @version     4.10     11/17/05 * @author      Sun Microsystems, Inc */public abstract class SnmpValue implements Cloneable, Serializable, SnmpDataTypeEnums {      /**     * Returns a <CODE>String</CODE> form containing ASN.1 tagging information.     * @return The <CODE>String</CODE> form.     */    public String toAsn1String() {	return "[" + getTypeName() + "] " + toString();    }      /**     * Returns the value encoded as an OID.     * The method is particularly useful when dealing with indexed table made of     * several SNMP variables.     * @return The value encoded as an OID.     */    public abstract SnmpOid toOid() ;      /**     * Returns a textual description of the object.     * @return ASN.1 textual description.     */    public abstract String getTypeName() ;      /**     * Same as clone, but you cannot perform cloning using this object because     * clone is protected. This method should call <CODE>clone()</CODE>.     * @return The <CODE>SnmpValue</CODE> clone.     */    public abstract SnmpValue duplicate() ;      /**     * This method returns <CODE>false</CODE> by default and is redefined     * in the {@link com.sun.jmx.snmp.SnmpNull} class.      */    public boolean isNoSuchObjectValue() {        return false;    }    /**     * This method returns <CODE>false</CODE> by default and is redefined     * in the {@link com.sun.jmx.snmp.SnmpNull} class.      */    public boolean isNoSuchInstanceValue() {        return false;    }    /**     * This method returns <CODE>false</CODE> by default and is redefined     * in the {@link com.sun.jmx.snmp.SnmpNull} class.      */    public boolean isEndOfMibViewValue() {        return false;    }}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -