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

org.yangcentral.yangkit.model.impl.restriction.Int32Impl 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.Int32;
import org.yangcentral.yangkit.model.api.stmt.Typedef;

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

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy