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

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

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

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy