YearMonthDay.java 11.5 KB
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419
package org.joda.time;

import java.io.Serializable;
import java.util.Calendar;
import java.util.Date;
import java.util.Locale;
import org.joda.time.base.BasePartial;
import org.joda.time.chrono.ISOChronology;
import org.joda.time.field.AbstractPartialFieldProperty;
import org.joda.time.field.FieldUtils;
import org.joda.time.format.DateTimeFormatter;
import org.joda.time.format.ISODateTimeFormat;

@Deprecated
public final class YearMonthDay
  extends BasePartial
  implements Serializable, ReadablePartial
{
  public static final int DAY_OF_MONTH = 2;
  public static final int MONTH_OF_YEAR = 1;
  public static final int YEAR = 0;
  private static final DateTimeFieldType[] a = { DateTimeFieldType.year(), DateTimeFieldType.monthOfYear(), DateTimeFieldType.dayOfMonth() };
  private static final long serialVersionUID = 797544782896179L;
  
  public YearMonthDay() {}
  
  public YearMonthDay(int paramInt1, int paramInt2, int paramInt3)
  {
    this(paramInt1, paramInt2, paramInt3, null);
  }
  
  public YearMonthDay(int paramInt1, int paramInt2, int paramInt3, Chronology paramChronology)
  {
    super(new int[] { paramInt1, paramInt2, paramInt3 }, paramChronology);
  }
  
  public YearMonthDay(long paramLong)
  {
    super(paramLong);
  }
  
  public YearMonthDay(long paramLong, Chronology paramChronology)
  {
    super(paramLong, paramChronology);
  }
  
  public YearMonthDay(Object paramObject)
  {
    super(paramObject, null, ISODateTimeFormat.dateOptionalTimeParser());
  }
  
  public YearMonthDay(Object paramObject, Chronology paramChronology)
  {
    super(paramObject, DateTimeUtils.getChronology(paramChronology), ISODateTimeFormat.dateOptionalTimeParser());
  }
  
  public YearMonthDay(Chronology paramChronology)
  {
    super(paramChronology);
  }
  
  public YearMonthDay(DateTimeZone paramDateTimeZone)
  {
    super(ISOChronology.getInstance(paramDateTimeZone));
  }
  
  private YearMonthDay(YearMonthDay paramYearMonthDay, Chronology paramChronology)
  {
    super(paramYearMonthDay, paramChronology);
  }
  
  YearMonthDay(YearMonthDay paramYearMonthDay, int[] paramArrayOfInt)
  {
    super(paramYearMonthDay, paramArrayOfInt);
  }
  
  public static YearMonthDay fromCalendarFields(Calendar paramCalendar)
  {
    if (paramCalendar == null) {
      throw new IllegalArgumentException("The calendar must not be null");
    }
    return new YearMonthDay(paramCalendar.get(1), paramCalendar.get(2) + 1, paramCalendar.get(5));
  }
  
  public static YearMonthDay fromDateFields(Date paramDate)
  {
    if (paramDate == null) {
      throw new IllegalArgumentException("The date must not be null");
    }
    return new YearMonthDay(paramDate.getYear() + 1900, paramDate.getMonth() + 1, paramDate.getDate());
  }
  
  public final Property dayOfMonth()
  {
    return new Property(this, 2);
  }
  
  public final int getDayOfMonth()
  {
    return getValue(2);
  }
  
  protected final DateTimeField getField(int paramInt, Chronology paramChronology)
  {
    switch (paramInt)
    {
    default: 
      throw new IndexOutOfBoundsException("Invalid index: " + paramInt);
    case 0: 
      return paramChronology.year();
    case 1: 
      return paramChronology.monthOfYear();
    }
    return paramChronology.dayOfMonth();
  }
  
  public final DateTimeFieldType getFieldType(int paramInt)
  {
    return a[paramInt];
  }
  
  public final DateTimeFieldType[] getFieldTypes()
  {
    return (DateTimeFieldType[])a.clone();
  }
  
  public final int getMonthOfYear()
  {
    return getValue(1);
  }
  
  public final int getYear()
  {
    return getValue(0);
  }
  
  public final YearMonthDay minus(ReadablePeriod paramReadablePeriod)
  {
    return withPeriodAdded(paramReadablePeriod, -1);
  }
  
  public final YearMonthDay minusDays(int paramInt)
  {
    return withFieldAdded(DurationFieldType.days(), FieldUtils.safeNegate(paramInt));
  }
  
  public final YearMonthDay minusMonths(int paramInt)
  {
    return withFieldAdded(DurationFieldType.months(), FieldUtils.safeNegate(paramInt));
  }
  
  public final YearMonthDay minusYears(int paramInt)
  {
    return withFieldAdded(DurationFieldType.years(), FieldUtils.safeNegate(paramInt));
  }
  
  public final Property monthOfYear()
  {
    return new Property(this, 1);
  }
  
  public final YearMonthDay plus(ReadablePeriod paramReadablePeriod)
  {
    return withPeriodAdded(paramReadablePeriod, 1);
  }
  
  public final YearMonthDay plusDays(int paramInt)
  {
    return withFieldAdded(DurationFieldType.days(), paramInt);
  }
  
  public final YearMonthDay plusMonths(int paramInt)
  {
    return withFieldAdded(DurationFieldType.months(), paramInt);
  }
  
  public final YearMonthDay plusYears(int paramInt)
  {
    return withFieldAdded(DurationFieldType.years(), paramInt);
  }
  
  public final Property property(DateTimeFieldType paramDateTimeFieldType)
  {
    return new Property(this, indexOfSupported(paramDateTimeFieldType));
  }
  
  public final int size()
  {
    return 3;
  }
  
  public final DateMidnight toDateMidnight()
  {
    return toDateMidnight(null);
  }
  
  public final DateMidnight toDateMidnight(DateTimeZone paramDateTimeZone)
  {
    paramDateTimeZone = getChronology().withZone(paramDateTimeZone);
    return new DateMidnight(getYear(), getMonthOfYear(), getDayOfMonth(), paramDateTimeZone);
  }
  
  public final DateTime toDateTime(TimeOfDay paramTimeOfDay)
  {
    return toDateTime(paramTimeOfDay, null);
  }
  
  public final DateTime toDateTime(TimeOfDay paramTimeOfDay, DateTimeZone paramDateTimeZone)
  {
    paramDateTimeZone = getChronology().withZone(paramDateTimeZone);
    long l2 = paramDateTimeZone.set(this, DateTimeUtils.currentTimeMillis());
    long l1 = l2;
    if (paramTimeOfDay != null) {
      l1 = paramDateTimeZone.set(paramTimeOfDay, l2);
    }
    return new DateTime(l1, paramDateTimeZone);
  }
  
  public final DateTime toDateTimeAtCurrentTime()
  {
    return toDateTimeAtCurrentTime(null);
  }
  
  public final DateTime toDateTimeAtCurrentTime(DateTimeZone paramDateTimeZone)
  {
    paramDateTimeZone = getChronology().withZone(paramDateTimeZone);
    return new DateTime(paramDateTimeZone.set(this, DateTimeUtils.currentTimeMillis()), paramDateTimeZone);
  }
  
  public final DateTime toDateTimeAtMidnight()
  {
    return toDateTimeAtMidnight(null);
  }
  
  public final DateTime toDateTimeAtMidnight(DateTimeZone paramDateTimeZone)
  {
    paramDateTimeZone = getChronology().withZone(paramDateTimeZone);
    return new DateTime(getYear(), getMonthOfYear(), getDayOfMonth(), 0, 0, 0, 0, paramDateTimeZone);
  }
  
  public final Interval toInterval()
  {
    return toInterval(null);
  }
  
  public final Interval toInterval(DateTimeZone paramDateTimeZone)
  {
    return toDateMidnight(DateTimeUtils.getZone(paramDateTimeZone)).toInterval();
  }
  
  public final LocalDate toLocalDate()
  {
    return new LocalDate(getYear(), getMonthOfYear(), getDayOfMonth(), getChronology());
  }
  
  public final String toString()
  {
    return ISODateTimeFormat.yearMonthDay().print(this);
  }
  
  public final YearMonthDay withChronologyRetainFields(Chronology paramChronology)
  {
    paramChronology = DateTimeUtils.getChronology(paramChronology).withUTC();
    if (paramChronology == getChronology()) {
      return this;
    }
    YearMonthDay localYearMonthDay = new YearMonthDay(this, paramChronology);
    paramChronology.validate(localYearMonthDay, getValues());
    return localYearMonthDay;
  }
  
  public final YearMonthDay withDayOfMonth(int paramInt)
  {
    int[] arrayOfInt = getValues();
    return new YearMonthDay(this, getChronology().dayOfMonth().set(this, 2, arrayOfInt, paramInt));
  }
  
  public final YearMonthDay withField(DateTimeFieldType paramDateTimeFieldType, int paramInt)
  {
    int i = indexOfSupported(paramDateTimeFieldType);
    if (paramInt == getValue(i)) {
      return this;
    }
    paramDateTimeFieldType = getValues();
    return new YearMonthDay(this, getField(i).set(this, i, paramDateTimeFieldType, paramInt));
  }
  
  public final YearMonthDay withFieldAdded(DurationFieldType paramDurationFieldType, int paramInt)
  {
    int i = indexOfSupported(paramDurationFieldType);
    if (paramInt == 0) {
      return this;
    }
    paramDurationFieldType = getValues();
    return new YearMonthDay(this, getField(i).add(this, i, paramDurationFieldType, paramInt));
  }
  
  public final YearMonthDay withMonthOfYear(int paramInt)
  {
    int[] arrayOfInt = getValues();
    return new YearMonthDay(this, getChronology().monthOfYear().set(this, 1, arrayOfInt, paramInt));
  }
  
  public final YearMonthDay withPeriodAdded(ReadablePeriod paramReadablePeriod, int paramInt)
  {
    if ((paramReadablePeriod == null) || (paramInt == 0)) {
      return this;
    }
    Object localObject1 = getValues();
    int i = 0;
    while (i < paramReadablePeriod.size())
    {
      int j = indexOf(paramReadablePeriod.getFieldType(i));
      Object localObject2 = localObject1;
      if (j >= 0) {
        localObject2 = getField(j).add(this, j, (int[])localObject1, FieldUtils.safeMultiply(paramReadablePeriod.getValue(i), paramInt));
      }
      i += 1;
      localObject1 = localObject2;
    }
    return new YearMonthDay(this, (int[])localObject1);
  }
  
  public final YearMonthDay withYear(int paramInt)
  {
    int[] arrayOfInt = getValues();
    return new YearMonthDay(this, getChronology().year().set(this, 0, arrayOfInt, paramInt));
  }
  
  public final Property year()
  {
    return new Property(this, 0);
  }
  
  @Deprecated
  public static class Property
    extends AbstractPartialFieldProperty
    implements Serializable
  {
    private static final long serialVersionUID = 5727734012190224363L;
    private final YearMonthDay a;
    private final int b;
    
    Property(YearMonthDay paramYearMonthDay, int paramInt)
    {
      this.a = paramYearMonthDay;
      this.b = paramInt;
    }
    
    public YearMonthDay addToCopy(int paramInt)
    {
      int[] arrayOfInt = this.a.getValues();
      arrayOfInt = getField().add(this.a, this.b, arrayOfInt, paramInt);
      return new YearMonthDay(this.a, arrayOfInt);
    }
    
    public YearMonthDay addWrapFieldToCopy(int paramInt)
    {
      int[] arrayOfInt = this.a.getValues();
      arrayOfInt = getField().addWrapField(this.a, this.b, arrayOfInt, paramInt);
      return new YearMonthDay(this.a, arrayOfInt);
    }
    
    public int get()
    {
      return this.a.getValue(this.b);
    }
    
    public DateTimeField getField()
    {
      return this.a.getField(this.b);
    }
    
    protected ReadablePartial getReadablePartial()
    {
      return this.a;
    }
    
    public YearMonthDay getYearMonthDay()
    {
      return this.a;
    }
    
    public YearMonthDay setCopy(int paramInt)
    {
      int[] arrayOfInt = this.a.getValues();
      arrayOfInt = getField().set(this.a, this.b, arrayOfInt, paramInt);
      return new YearMonthDay(this.a, arrayOfInt);
    }
    
    public YearMonthDay setCopy(String paramString)
    {
      return setCopy(paramString, null);
    }
    
    public YearMonthDay setCopy(String paramString, Locale paramLocale)
    {
      int[] arrayOfInt = this.a.getValues();
      paramString = getField().set(this.a, this.b, arrayOfInt, paramString, paramLocale);
      return new YearMonthDay(this.a, paramString);
    }
    
    public YearMonthDay withMaximumValue()
    {
      return setCopy(getMaximumValue());
    }
    
    public YearMonthDay withMinimumValue()
    {
      return setCopy(getMinimumValue());
    }
  }
}


/* Location:              /home/merong/decompile/hackery-dex2jar.jar!/org/joda/time/YearMonthDay.class
 * Java compiler version: 6 (50.0)
 * JD-Core Version:       0.7.1
 */