// =========================================================== // Constructors // =========================================================== // =========================================================== // Getter & Setter // =========================================================== public static void SetDebugLevel(/* final */ DebugLevel pDebugLevel) { if (pDebugLevel == null) { throw new IllegalArgumentException("pDebugLevel must not be null!"); } Debug.DEBUGLEVEL = pDebugLevel; }
public bool IsSameOrLessThan(DebugLevel otherDebugLevel) { return IsSameOrLessThan(otherDebugLevel.DebugValue); }
public DebugLevel(DebugLevel debugLevel) { Init(debugLevel.DebugValue); }