/* * Copyright (c) 2013 Cisco Systems, Inc. and others. All rights reserved. * * This program and the accompanying materials are made available under the * terms of the Eclipse Public License v1.0 which accompanies this distribution, * and is available at http://www.eclipse.org/legal/epl-v10.html */ package org.opendaylight.controller.yang.model.util; import org.opendaylight.controller.yang.common.QName; import org.opendaylight.controller.yang.model.api.SchemaPath; import org.opendaylight.controller.yang.model.api.type.IntegerTypeDefinition; /** * Implementation of Yang int32 built-in type.
* int32 represents integer values between -2147483648 and 2147483647, * inclusively. The Java counterpart of Yang int32 built-in type is * {@link Integer}. * * @see AbstractSignedInteger * */ public final class Int32 extends AbstractSignedInteger { private static final QName name = BaseTypes.constructQName("int32"); private final Integer defaultValue = null; private static final String description = "int32 represents integer values between -2147483648 and 2147483647, inclusively."; private final IntegerTypeDefinition baseType; public Int32(final SchemaPath path) { super(path, name, description, Integer.MIN_VALUE, Integer.MAX_VALUE, ""); this.baseType = this; } /* * (non-Javadoc) * * @see * org.opendaylight.controller.yang.model.api.TypeDefinition#getBaseType() */ @Override public IntegerTypeDefinition getBaseType() { return baseType; } /* * (non-Javadoc) * * @see * org.opendaylight.controller.yang.model.api.TypeDefinition#getDefaultValue * () */ @Override public Object getDefaultValue() { return defaultValue; } @Override public int hashCode() { final int prime = 31; int result = super.hashCode(); result = prime * result + ((defaultValue == null) ? 0 : defaultValue.hashCode()); return result; } @Override public boolean equals(Object obj) { if (this == obj) { return true; } if (!super.equals(obj)) { return false; } if (getClass() != obj.getClass()) { return false; } Int32 other = (Int32) obj; if (defaultValue == null) { if (other.defaultValue != null) { return false; } } else if (!defaultValue.equals(other.defaultValue)) { return false; } return true; } @Override public String toString() { StringBuilder builder = new StringBuilder(); builder.append("Int32 [defaultValue="); builder.append(defaultValue); builder.append(", AbstractInteger="); builder.append(super.toString()); builder.append("]"); return builder.toString(); } }