/* * Copyright 2013 Martin Smock <smock.martin@gmail.com> * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package li.strolch.model.timevalue.impl; import java.io.Serializable; import li.strolch.model.StrolchValueType; import li.strolch.model.timevalue.ITimeValue; import li.strolch.model.timevalue.IValue; /** * {@link IValue} implementation to work with Integer valued {@link ITimeValue} objects * * @author Martin Smock <smock.martin@gmail.com> */ public class IntegerValue implements IValue<Integer>, Serializable { private static final long serialVersionUID = 1L; public static final IntegerValue NEUTRAL = new IntegerValue(0); private Integer value; public IntegerValue(Integer value) { this.value = value; } public IntegerValue(int value) { this.value = Integer.valueOf(value); } public IntegerValue(String valueAsString) throws NumberFormatException { this.value = Integer.parseInt(valueAsString); } @Override public String getType() { return StrolchValueType.INTEGER.getType(); } @Override public IntegerValue add(Integer o) { this.value += o; return this; } @Override public boolean matches(IValue<Integer> other) { return this.value.equals(other.getValue()); } @Override public Integer getValue() { return this.value; } @Override public IntegerValue getInverse() { return new IntegerValue(-getValue()); } @Override public String getValueAsString() { return this.value.toString(); } @SuppressWarnings("nls") @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("IntegerValue [value="); sb.append(this.value); sb.append("]"); return sb.toString(); } @Override public IntegerValue getCopy() { return new IntegerValue(this.value); } @Override public int hashCode() { final int prime = 31; int result = 1; result = prime * result + ((this.value == null) ? 0 : this.value.hashCode()); return result; } @Override public boolean equals(Object obj) { if (this == obj) { return true; } if (obj == null) { return false; } if (getClass() != obj.getClass()) { return false; } IntegerValue other = (IntegerValue) obj; if (this.value == null) { if (other.value != null) { return false; } } else if (!this.value.equals(other.value)) { return false; } return true; } }