All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.yangcentral.yangkit.model.impl.restriction.UInt64Impl Maven / Gradle / Ivy

There is a newer version: 1.4.5
Show newest version
package org.yangcentral.yangkit.model.impl.restriction;

import org.yangcentral.yangkit.base.YangContext;
import org.yangcentral.yangkit.model.api.restriction.UInt64;
import org.yangcentral.yangkit.model.api.stmt.Typedef;

import java.math.BigInteger;

public class UInt64Impl extends YangIntegerImpl implements UInt64 {
   public UInt64Impl(YangContext context, Typedef derived) {
      super(context, derived);
   }

   public UInt64Impl(YangContext context) {
      super(context);
   }

   public boolean equals(Object obj) {
      return !(obj instanceof UInt64) ? false : super.equals(obj);
   }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy