Java Doc for PreciseDurationDateTimeField.java in  » Development » Joda-Time » org » joda » time » field » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » Development » Joda Time » org.joda.time.field 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


org.joda.time.field.BaseDateTimeField
   org.joda.time.field.PreciseDurationDateTimeField

All known Subclasses:   org.joda.time.field.PreciseDateTimeField,  org.joda.time.chrono.GJDayOfWeekDateTimeField,  org.joda.time.chrono.BasicWeekOfWeekyearDateTimeField,  org.joda.time.chrono.BasicDayOfYearDateTimeField,  org.joda.time.chrono.BasicDayOfMonthDateTimeField,
PreciseDurationDateTimeField
abstract public class PreciseDurationDateTimeField extends BaseDateTimeField (Code)
Precise datetime field, which has a precise unit duration field.

PreciseDurationDateTimeField is thread-safe and immutable, and its subclasses must be as well.
author:
   Brian S O'Neill
since:
   1.0



Field Summary
final  longiUnitMillis
    

Constructor Summary
public  PreciseDurationDateTimeField(DateTimeFieldType type, DurationField unit)
     Constructor.

Method Summary
public  DurationFieldgetDurationField()
     Returns the duration per unit value of this field.
protected  intgetMaximumValueForSet(long instant, int value)
     Called by the set method to get the maximum allowed value.
public  intgetMinimumValue()
     Get the minimum value for the field.
final public  longgetUnitMillis()
    
public  booleanisLenient()
     Returns false by default.
public  longremainder(long instant)
     This method assumes that this field is properly rounded on 1970-01-01T00:00:00.
public  longroundCeiling(long instant)
     This method assumes that this field is properly rounded on 1970-01-01T00:00:00.
public  longroundFloor(long instant)
     This method assumes that this field is properly rounded on 1970-01-01T00:00:00.
public  longset(long instant, int value)
     Set the specified amount of units to the specified time instant.
Parameters:
  instant - the milliseconds from 1970-01-01T00:00:00Z to set in
Parameters:
  value - value of units to set.

Field Detail
iUnitMillis
final long iUnitMillis(Code)
The fractional unit in millis




Constructor Detail
PreciseDurationDateTimeField
public PreciseDurationDateTimeField(DateTimeFieldType type, DurationField unit)(Code)
Constructor.
Parameters:
  type - the field type
Parameters:
  unit - precise unit duration, like "days()".
throws:
  IllegalArgumentException - if duration field is imprecise
throws:
  IllegalArgumentException - if unit milliseconds is less than one




Method Detail
getDurationField
public DurationField getDurationField()(Code)
Returns the duration per unit value of this field. For example, if this field represents "minute of hour", then the duration field is minutes. the duration of this field, or UnsupportedDurationField if fieldhas no duration



getMaximumValueForSet
protected int getMaximumValueForSet(long instant, int value)(Code)
Called by the set method to get the maximum allowed value. By default, returns getMaximumValue(instant). Override to provide a faster implementation.



getMinimumValue
public int getMinimumValue()(Code)
Get the minimum value for the field. the minimum value



getUnitMillis
final public long getUnitMillis()(Code)



isLenient
public boolean isLenient()(Code)
Returns false by default.



remainder
public long remainder(long instant)(Code)
This method assumes that this field is properly rounded on 1970-01-01T00:00:00. If the rounding alignment differs, override this method as follows:
 return super.remainder(instant + ALIGNMENT_MILLIS);
 



roundCeiling
public long roundCeiling(long instant)(Code)
This method assumes that this field is properly rounded on 1970-01-01T00:00:00. If the rounding alignment differs, override this method as follows:
 return super.roundCeiling(instant + ALIGNMENT_MILLIS) - ALIGNMENT_MILLIS;
 



roundFloor
public long roundFloor(long instant)(Code)
This method assumes that this field is properly rounded on 1970-01-01T00:00:00. If the rounding alignment differs, override this method as follows:
 return super.roundFloor(instant + ALIGNMENT_MILLIS) - ALIGNMENT_MILLIS;
 



set
public long set(long instant, int value)(Code)
Set the specified amount of units to the specified time instant.
Parameters:
  instant - the milliseconds from 1970-01-01T00:00:00Z to set in
Parameters:
  value - value of units to set. the updated time instant.
throws:
  IllegalArgumentException - if value is too large or too small.



Methods inherited from org.joda.time.field.BaseDateTimeField
public long add(long instant, int value)(Code)(Java Doc)
public long add(long instant, long value)(Code)(Java Doc)
public int[] add(ReadablePartial instant, int fieldIndex, int[] values, int valueToAdd)(Code)(Java Doc)
public long addWrapField(long instant, int value)(Code)(Java Doc)
public int[] addWrapField(ReadablePartial instant, int fieldIndex, int[] values, int valueToAdd)(Code)(Java Doc)
public int[] addWrapPartial(ReadablePartial instant, int fieldIndex, int[] values, int valueToAdd)(Code)(Java Doc)
protected int convertText(String text, Locale locale)(Code)(Java Doc)
abstract public int get(long instant)(Code)(Java Doc)
public String getAsShortText(long instant, Locale locale)(Code)(Java Doc)
final public String getAsShortText(long instant)(Code)(Java Doc)
public String getAsShortText(ReadablePartial partial, int fieldValue, Locale locale)(Code)(Java Doc)
final public String getAsShortText(ReadablePartial partial, Locale locale)(Code)(Java Doc)
public String getAsShortText(int fieldValue, Locale locale)(Code)(Java Doc)
public String getAsText(long instant, Locale locale)(Code)(Java Doc)
final public String getAsText(long instant)(Code)(Java Doc)
public String getAsText(ReadablePartial partial, int fieldValue, Locale locale)(Code)(Java Doc)
final public String getAsText(ReadablePartial partial, Locale locale)(Code)(Java Doc)
public String getAsText(int fieldValue, Locale locale)(Code)(Java Doc)
public int getDifference(long minuendInstant, long subtrahendInstant)(Code)(Java Doc)
public long getDifferenceAsLong(long minuendInstant, long subtrahendInstant)(Code)(Java Doc)
abstract public DurationField getDurationField()(Code)(Java Doc)
public int getLeapAmount(long instant)(Code)(Java Doc)
public DurationField getLeapDurationField()(Code)(Java Doc)
public int getMaximumShortTextLength(Locale locale)(Code)(Java Doc)
public int getMaximumTextLength(Locale locale)(Code)(Java Doc)
abstract public int getMaximumValue()(Code)(Java Doc)
public int getMaximumValue(long instant)(Code)(Java Doc)
public int getMaximumValue(ReadablePartial instant)(Code)(Java Doc)
public int getMaximumValue(ReadablePartial instant, int[] values)(Code)(Java Doc)
abstract public int getMinimumValue()(Code)(Java Doc)
public int getMinimumValue(long instant)(Code)(Java Doc)
public int getMinimumValue(ReadablePartial instant)(Code)(Java Doc)
public int getMinimumValue(ReadablePartial instant, int[] values)(Code)(Java Doc)
final public String getName()(Code)(Java Doc)
abstract public DurationField getRangeDurationField()(Code)(Java Doc)
final public DateTimeFieldType getType()(Code)(Java Doc)
public boolean isLeap(long instant)(Code)(Java Doc)
final public boolean isSupported()(Code)(Java Doc)
public long remainder(long instant)(Code)(Java Doc)
public long roundCeiling(long instant)(Code)(Java Doc)
abstract public long roundFloor(long instant)(Code)(Java Doc)
public long roundHalfCeiling(long instant)(Code)(Java Doc)
public long roundHalfEven(long instant)(Code)(Java Doc)
public long roundHalfFloor(long instant)(Code)(Java Doc)
abstract public long set(long instant, int value)(Code)(Java Doc)
public int[] set(ReadablePartial partial, int fieldIndex, int[] values, int newValue)(Code)(Java Doc)
public long set(long instant, String text, Locale locale)(Code)(Java Doc)
final public long set(long instant, String text)(Code)(Java Doc)
public int[] set(ReadablePartial instant, int fieldIndex, int[] values, String text, Locale locale)(Code)(Java Doc)
public String toString()(Code)(Java Doc)

www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.