forked from x-stream/xstream
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add converters for MinguoDate and ThaiBuddhistDate. Add aliases for
MinguoEra and ThaiBuddhistEra.
- Loading branch information
Showing
4 changed files
with
220 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
48 changes: 48 additions & 0 deletions
48
xstream/src/java/com/thoughtworks/xstream/converters/time/MinguoDateConverter.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
/* | ||
* Copyright (C) 2017 XStream Committers. | ||
* All rights reserved. | ||
* | ||
* The software in this package is published under the terms of the BSD | ||
* style license a copy of which has been included with this distribution in | ||
* the LICENSE.txt file. | ||
* | ||
* Created on 22. February 2017 by Joerg Schaible | ||
*/ | ||
package com.thoughtworks.xstream.converters.time; | ||
|
||
import java.time.chrono.ChronoLocalDate; | ||
import java.time.chrono.MinguoChronology; | ||
import java.time.chrono.MinguoDate; | ||
import java.time.chrono.MinguoEra; | ||
import java.util.Collections; | ||
|
||
|
||
/** | ||
* Converts a {@link java.time.chrono.MinguoDate} to a string. | ||
* | ||
* @author Jörg Schaible | ||
*/ | ||
public class MinguoDateConverter extends AbstractChronoLocalDateConverter<MinguoEra> { | ||
|
||
@Override | ||
public boolean canConvert(final Class<?> type) { | ||
return MinguoDate.class == type; | ||
} | ||
|
||
@Override | ||
public Object fromString(final String str) { | ||
return parseChronoLocalDate(str, "Minguo", Collections.singleton(MinguoChronology.INSTANCE)); | ||
} | ||
|
||
@Override | ||
protected ChronoLocalDate chronoLocalDateOf(final MinguoEra era, final int prolepticYear, final int month, | ||
final int dayOfMonth) { | ||
return MinguoDate.of(prolepticYear, month, dayOfMonth); | ||
} | ||
|
||
@Override | ||
protected MinguoEra eraOf(final String id) { | ||
return MinguoEra.valueOf(id); | ||
} | ||
|
||
} |
48 changes: 48 additions & 0 deletions
48
xstream/src/java/com/thoughtworks/xstream/converters/time/ThaiBuddhistDateConverter.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
/* | ||
* Copyright (C) 2017 XStream Committers. | ||
* All rights reserved. | ||
* | ||
* The software in this package is published under the terms of the BSD | ||
* style license a copy of which has been included with this distribution in | ||
* the LICENSE.txt file. | ||
* | ||
* Created on 22. February 2017 by Joerg Schaible | ||
*/ | ||
package com.thoughtworks.xstream.converters.time; | ||
|
||
import java.time.chrono.ChronoLocalDate; | ||
import java.time.chrono.ThaiBuddhistChronology; | ||
import java.time.chrono.ThaiBuddhistDate; | ||
import java.time.chrono.ThaiBuddhistEra; | ||
import java.util.Collections; | ||
|
||
|
||
/** | ||
* Converts a {@link java.time.chrono.ThaiBuddhistDate} to a string. | ||
* | ||
* @author Jörg Schaible | ||
*/ | ||
public class ThaiBuddhistDateConverter extends AbstractChronoLocalDateConverter<ThaiBuddhistEra> { | ||
|
||
@Override | ||
public boolean canConvert(final Class<?> type) { | ||
return ThaiBuddhistDate.class == type; | ||
} | ||
|
||
@Override | ||
public Object fromString(final String str) { | ||
return parseChronoLocalDate(str, "Thai Buddhist", Collections.singleton(ThaiBuddhistChronology.INSTANCE)); | ||
} | ||
|
||
@Override | ||
protected ChronoLocalDate chronoLocalDateOf(final ThaiBuddhistEra era, final int prolepticYear, final int month, | ||
final int dayOfMonth) { | ||
return ThaiBuddhistDate.of(prolepticYear, month, dayOfMonth); | ||
} | ||
|
||
@Override | ||
protected ThaiBuddhistEra eraOf(final String id) { | ||
return ThaiBuddhistEra.valueOf(id); | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters