View Javadoc
1   /**
2    * Copyright 2005-2015 The Kuali Foundation
3    *
4    * Licensed under the Educational Community License, Version 2.0 (the "License");
5    * you may not use this file except in compliance with the License.
6    * You may obtain a copy of the License at
7    *
8    * http://www.opensource.org/licenses/ecl2.php
9    *
10   * Unless required by applicable law or agreed to in writing, software
11   * distributed under the License is distributed on an "AS IS" BASIS,
12   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13   * See the License for the specific language governing permissions and
14   * limitations under the License.
15   */
16  package org.kuali.rice.core.api.criteria;
17  
18  import org.apache.commons.lang.builder.EqualsBuilder;
19  import org.apache.commons.lang.builder.HashCodeBuilder;
20  import org.apache.commons.lang.builder.ToStringBuilder;
21  import org.kuali.rice.core.api.util.type.KualiDecimal;
22  import org.kuali.rice.core.api.util.type.KualiInteger;
23  
24  import javax.xml.bind.annotation.XmlAccessType;
25  import javax.xml.bind.annotation.XmlAccessorType;
26  import javax.xml.bind.annotation.XmlRootElement;
27  import javax.xml.bind.annotation.XmlType;
28  import javax.xml.bind.annotation.XmlValue;
29  import java.math.BigDecimal;
30  import java.math.BigInteger;
31  
32  /**
33   * A CriteriaValue which stores {@link org.kuali.rice.core.api.util.type.KualiInteger} information in the form of a
34   * {@link java.math.BigInteger} value.
35   *
36   * @author Kuali Rice Team (rice.collab@kuali.org)
37   *
38   */
39  @XmlRootElement(name = CriteriaKualiIntegerValue.Constants.ROOT_ELEMENT_NAME)
40  @XmlAccessorType(XmlAccessType.NONE)
41  @XmlType(name = CriteriaKualiIntegerValue.Constants.TYPE_NAME)
42  public final class CriteriaKualiIntegerValue implements CriteriaValue<KualiInteger> {
43  
44      @XmlValue
45      private final BigInteger value;
46  
47      CriteriaKualiIntegerValue() {
48          this.value = null;
49      }
50  
51      CriteriaKualiIntegerValue(KualiInteger value) {
52      	validateValue(value);
53          this.value = safeInstance(value);
54      }
55  
56      CriteriaKualiIntegerValue(long value) {
57          validateValue(value);
58          this.value = new KualiInteger(value).bigIntegerValue();
59      }
60  
61      CriteriaKualiIntegerValue(int value) {
62          validateValue(value);
63          this.value = new KualiInteger((long)value).bigIntegerValue();
64      }
65  
66      CriteriaKualiIntegerValue(String value) {
67          validateValue(value);
68          this.value = new KualiInteger(value).bigIntegerValue();
69      }
70  
71      CriteriaKualiIntegerValue(BigDecimal value) {
72          validateValue(value);
73          this.value = new KualiInteger(value).bigIntegerValue();
74      }
75  
76      private static void validateValue(Object value) {
77      	if (value == null) {
78      		throw new IllegalArgumentException("Value cannot be null.");
79      	}
80      }
81  
82      /**
83       * Since KualiInteger is not technically immutable we defensively copy when needed.
84       * <p>
85       * see Effective Java 2nd ed. page 79 for details.
86       * </p>
87       * @param val the KualiInteger to check
88       * @return the safe BigInteger
89       */
90      private static BigInteger safeInstance(KualiInteger val) {
91          return new BigInteger(val.bigIntegerValue().toString());
92      }
93      
94      @Override
95      public KualiInteger getValue() {
96          return new KualiInteger(this.value);
97      }
98      
99      @Override
100     public int hashCode() {
101         return HashCodeBuilder.reflectionHashCode(this);
102     }
103 
104     @Override
105     public boolean equals(Object obj) {
106         return EqualsBuilder.reflectionEquals(obj, this);
107     }
108 
109     @Override
110     public String toString() {
111         return ToStringBuilder.reflectionToString(this);
112     }
113     
114     /**
115      * Defines some internal constants used on this class.
116      */
117     static class Constants {
118         final static String ROOT_ELEMENT_NAME = "kualiIntegerValue";
119         final static String TYPE_NAME = "CriteriaKualiIntegerValueType";
120     }
121     
122 }