01: /*
02: * Copyright 2001-2005 Stephen Colebourne
03: *
04: * Licensed under the Apache License, Version 2.0 (the "License");
05: * you may not use this file except in compliance with the License.
06: * You may obtain a copy of the License at
07: *
08: * http://www.apache.org/licenses/LICENSE-2.0
09: *
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.joda.time.chrono.gj;
17:
18: import org.joda.time.DateTimeFieldType;
19: import org.joda.time.DurationField;
20:
21: /**
22: *
23: * @author Brian S O'Neill
24: */
25: class TestGJDayOfYearField extends TestGJDateTimeField {
26: public TestGJDayOfYearField(TestGJChronology chrono) {
27: super (DateTimeFieldType.dayOfYear(),
28: TestGJChronology.MILLIS_PER_DAY, chrono);
29: }
30:
31: public int get(long millis) {
32: int year = iChronology.gjYearFromMillis(millis);
33: return (int) (iChronology.fixedFromMillis(millis) - iChronology
34: .fixedFromGJ(year, 1, 1)) + 1;
35: }
36:
37: public long set(long millis, int value) {
38: return add(millis, (long) value - get(millis));
39: }
40:
41: public long add(long millis, long value) {
42: return millis + value * TestGJChronology.MILLIS_PER_DAY;
43: }
44:
45: public DurationField getRangeDurationField() {
46: return iChronology.years();
47: }
48:
49: public int getMinimumValue() {
50: return 1;
51: }
52:
53: public int getMaximumValue() {
54: return 366;
55: }
56:
57: public int getMaximumValue(long millis) {
58: return iChronology.year().isLeap(millis) ? 366 : 365;
59: }
60:
61: public long roundFloor(long millis) {
62: return iChronology.getDateOnlyMillis(millis);
63: }
64: }
|