palio.modules.snmp.mibParser
Enum MibType

java.lang.Object
  extended by java.lang.Enum<MibType>
      extended by palio.modules.snmp.mibParser.MibType
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<MibType>

public enum MibType
extends java.lang.Enum<MibType>


Enum Constant Summary
LEAF
          typ liscia ma zdefiniowane wszystkie pola nazwe, uid, parent, description, syntax, access i status
NODE
          typ node ma zdefiniowane tylko nazwe, uid i parenta
NODE_LEAF
          typ noda ktory ma zdefinowane pola podobne do liscia nazwe, uid, parent, description, syntax, access i status
ROOT
          typ root, ma zdefiniowana tylko nazwe
 
Method Summary
static MibType valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static MibType[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

ROOT

public static final MibType ROOT
typ root, ma zdefiniowana tylko nazwe


NODE

public static final MibType NODE
typ node ma zdefiniowane tylko nazwe, uid i parenta


LEAF

public static final MibType LEAF
typ liscia ma zdefiniowane wszystkie pola nazwe, uid, parent, description, syntax, access i status


NODE_LEAF

public static final MibType NODE_LEAF
typ noda ktory ma zdefinowane pola podobne do liscia nazwe, uid, parent, description, syntax, access i status

Method Detail

values

public static MibType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
for (MibType c : MibType.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static MibType valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Parameters:
name - the name of the enum constant to be returned.
Returns:
the enum constant with the specified name
Throws:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
java.lang.NullPointerException - if the argument is null