Enum Class SmiCompiler.OverwriteMode

java.lang.Object
java.lang.Enum<SmiCompiler.OverwriteMode>
com.snmp4j.smi.SmiCompiler.OverwriteMode
All Implemented Interfaces:
Serializable, Comparable<SmiCompiler.OverwriteMode>, java.lang.constant.Constable
Enclosing interface:
SmiCompiler

public static enum SmiCompiler.OverwriteMode extends Enum<SmiCompiler.OverwriteMode>
The OverwriteMode defines whether existing MIB modules should be overwritten or not.
  • Enum Constant Details

    • addNewOnly

      public static final SmiCompiler.OverwriteMode addNewOnly
      Only modules that are not yet in the repository are added. Exiting will not be updated.
    • overwriteIfNewer

      public static final SmiCompiler.OverwriteMode overwriteIfNewer
      Add new modules and overwrite existing if the new module has a newer LAST-UPDATED data and time in their MODULE-IDENTITY.
    • overwriteAlways

      public static final SmiCompiler.OverwriteMode overwriteAlways
      Add any new and overwrite any existing modules.
  • Method Details

    • values

      public static SmiCompiler.OverwriteMode[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static SmiCompiler.OverwriteMode valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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:
      IllegalArgumentException - if this enum class has no constant with the specified name
      NullPointerException - if the argument is null