Examples of MibTypeSymbol


Examples of net.percederberg.mibble.MibTypeSymbol

     *         null if none was found
     *
     * @since 2.7
     */
    public static SnmpTextualConvention findReference(MibType type) {
        MibTypeSymbol  sym;

        if (type instanceof SnmpObjectType) {
            type = ((SnmpObjectType) type).getSyntax();
        }
        if (type instanceof SnmpTextualConvention) {
            return (SnmpTextualConvention) type;
        }
        sym = type.getReferenceSymbol();
        return (sym == null) ? null : findReference(sym.getType());
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.