Subversion Repository Public Repository

litesoft

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
package org.litesoft.core.simpletypes.temporal;

import org.litesoft.core.typeutils.*;

/**
 * A Timestamp with resolution to the Minute ("Wall" relative) (with tracking for the Offset Minutes from Zulu).
 * <p/>
 * Note: This class supports Gregorian dates only.  As such when working with
 * Java Util Date(s) (or it's descendants) the local (or "Wall") date & time is all that is considered!
 */
public class TimestampHM extends AbstractTimestampHM<TimestampHM, AbstractTimestampHM.Mutable>
{
    private static final long serialVersionUID = 1L;

    @SuppressWarnings({"deprecation", "UnusedDeclaration"}) @Deprecated /** for Serialization */
    protected TimestampHM()
    {
        this( 0, 1, 1, 0, 0, 0 );
    }

    public TimestampHM( int pYear, int pMonth, int pDay, int pZuluOffsetMins, int pHour, int pMin )
    {
        super( pYear, pMonth, pDay, pZuluOffsetMins, pHour, pMin );
    }

    public TimestampHM( TimestampAccessorHM pAccessor )
    {
        this( pAccessor.getYear(), pAccessor.getMonth(), pAccessor.getDay(), //
              pAccessor.getZuluOffsetMins(), //
              pAccessor.getHour(), pAccessor.getMin() );
    }

    public static TimestampHM fromWallTime( int pYear, int pMonth, int pDay, int pHour, int pMin )
    {
        return new TimestampHM( UtilDateAdaptor.currentWall( pYear, pMonth, pDay, pHour, pMin ) );
    }

    public static TimestampHM fromISO8601( int pYear, int pMonth, int pDay, int pHour, String pFraction, boolean pZulu, Integer pUTC_offsetMinutes )
    {
        return fromISO8601( pYear, pMonth, pDay, pHour, fractionOf60(pFraction), pZulu, pUTC_offsetMinutes );
    }

    public static TimestampHM fromISO8601( int pYear, int pMonth, int pDay, int pHour, int pMin, boolean pZulu, Integer pUTC_offsetMinutes )
    {
        int zZuluOffsetMins = Integers.deNull( pUTC_offsetMinutes );
        Mutable zMutable = new Mutable( pYear, pMonth, pDay, //
                                        false, zZuluOffsetMins, //
                                        pHour, pMin );
        if ( pZulu || (zZuluOffsetMins == 0) )
        {
            zMutable.fromZuluToWall();
        }
        else // !Zulu && zZuluOffsetMins != 0
        {
            zMutable.fromOriginalWallToWall();
        }
        return new TimestampHM( zMutable );
    }

    @Override
    public TemporalResolution getResolution()
    {
        return TemporalResolution.ToMin;
    }

    @Override
    public String toString()
    {
        return toYMDHM();
    }

    public static String toString( TimestampHM pTimestamp )
    {
        return (pTimestamp != null) ? pTimestamp.toString() : null;
    }

    public static String toYMDHM( TimestampHM pTimestamp )
    {
        return (pTimestamp != null) ? pTimestamp.toYMDHM() : null;
    }

    public String toYMDHM()
    {
        return formatSortableDisplayFormYMDHM( this, new StringBuilder() ).toString();
    }

    public static TimestampHM fromYMDHM( String pToYMDHM )
            throws IllegalArgumentException
    {
        String[] parts = parseSimple( pToYMDHM, "// :" );
        return (parts == null) ? null : //
               fromWallTime( parseYear( pToYMDHM, parts ), //
                             parseMonth( pToYMDHM, parts ), //
                             parseDay( pToYMDHM, parts ), //
                             parseHour( pToYMDHM, parts ), //
                             parseMin( pToYMDHM, parts ) );
    }

    public final String toSQLvalue()
    {
        Mutable zMutable = new Mutable( getYear(), getMonth(), getDay(), false, getZuluOffsetMins(), getHour(), getMin() );
        zMutable.fromWallToZulu();
        return formatSQLvalueYMDH( zMutable, true, new StringBuilder() ).toString();
    }

    public static TimestampHM fromSQLvalue( String pToSQLvalue )
    {
        String[] parts = parseSimple( pToSQLvalue, "--TZ:" );
        return (parts == null) ? null : //
               fromISO8601( parseYear( pToSQLvalue, parts ), //
                            parseMonth( pToSQLvalue, parts ), //
                            parseDay( pToSQLvalue, parts ), //
                            parseHour( pToSQLvalue, parts ), //
                            parseMin( pToSQLvalue, parts ), //
                            true, parseOffset( pToSQLvalue, parts ) );
    }

    @Override
    public UtilDateAdaptor toUtilDateAdaptor()
    {
        return UtilDateAdaptor.offsetWallToMin( getZuluOffsetMins(), getYear(), getMonth(), getDay(), getHour(), getMin() );
    }

    // vvvvvvvvvvvvvvvvvv Non-common Public methods vvvvvvvvvvvvvvvvv

    public static TimestampHM now()
    {
        return new TimestampHM( new UtilDateAdaptor() );
    }

    // vvvvvvvvvvvvvvvvvv Support methods vvvvvvvvvvvvvvvvv

    @Override
    protected TimestampHM createTypeFrom( Mutable pMutable )
    {
        return new TimestampHM( pMutable.getYear(), pMutable.getMonth(), pMutable.getDay(), pMutable.getZuluOffsetMins(), pMutable.getHour(), pMutable.getMin() );
    }

    @Override
    protected Mutable createMutable( int pNewYear )
    {
        return new Mutable( pNewYear, getMonth(), getDay(), true, getZuluOffsetMins(), getHour(), getMin() );
    }

    @Override
    protected Mutable createMutable( int pYear, int pNewMonth )
    {
        return new Mutable( pYear, pNewMonth, getDay(), true, getZuluOffsetMins(), getHour(), getMin() );
    }

    @Override
    protected Mutable createMutable( int pYear, int pMonth, int pNewDay )
    {
        return new Mutable( pYear, pMonth, pNewDay, false, getZuluOffsetMins(), getHour(), getMin() );
    }

    @Override
    protected Mutable createMutable( int pYear, int pMonth, int pDay, int pNewHour )
    {
        return new Mutable( pYear, pMonth, pDay, false, getZuluOffsetMins(), pNewHour, getMin() );
    }

    @Override
    protected Mutable createMutable( int pYear, int pMonth, int pDay, int pHour, int pNewMin )
    {
        return new Mutable( pYear, pMonth, pDay, false, getZuluOffsetMins(), pHour, pNewMin );
    }
}

Commits for litesoft/trunk/Java/core/Anywhere/src/org/litesoft/core/simpletypes/temporal/TimestampHM.java

Diff revisions: vs.
Revision Author Commited Message
912 Diff Diff GeorgeS picture GeorgeS Fri 28 Jun, 2013 06:48:05 +0000

Revert to mixed & Working (PEDS & Prioritizer) code!

898 Diff Diff GeorgeS picture GeorgeS Sun 17 Mar, 2013 21:46:33 +0000

Temporal!!!

897 Diff Diff GeorgeS picture GeorgeS Mon 25 Feb, 2013 02:04:34 +0000
893 Diff Diff GeorgeS picture GeorgeS Mon 14 Jan, 2013 01:18:30 +0000
864 GeorgeS picture GeorgeS Mon 19 Nov, 2012 01:48:25 +0000