Java Doc for PreciseDateTimeField.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
      org.joda.time.field.PreciseDateTimeField

PreciseDateTimeField
public class PreciseDateTimeField extends PreciseDurationDateTimeField (Code)
Precise datetime field, composed of two precise duration fields.

This DateTimeField is useful for defining DateTimeFields that are composed of precise durations, like time of day fields. If either duration field is imprecise, then an ImpreciseDateTimeField may be used instead.

PreciseDateTimeField is thread-safe and immutable.
author:
   Brian S O'Neill
author:
   Stephen Colebourne
since:
   1.0
See Also:   ImpreciseDateTimeField




Constructor Summary
public  PreciseDateTimeField(DateTimeFieldType type, DurationField unit, DurationField range)
     Constructor.

Method Summary
public  longaddWrapField(long instant, int amount)
     Add to the component of the specified time instant, wrapping around within that component if necessary.
Parameters:
  instant - the milliseconds from 1970-01-01T00:00:00Z to add to
Parameters:
  amount - the amount of units to add (can be negative).
public  intget(long instant)
     Get the amount of fractional units from the specified time instant.
public  intgetMaximumValue()
     Get the maximum value for the field.
public  intgetRange()
     Returns the range of the field in the field's units.

For example, 60 for seconds per minute.

public  DurationFieldgetRangeDurationField()
     Returns the range duration of this field.
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.


Constructor Detail
PreciseDateTimeField
public PreciseDateTimeField(DateTimeFieldType type, DurationField unit, DurationField range)(Code)
Constructor.
Parameters:
  type - the field type this field uses
Parameters:
  unit - precise unit duration, like "seconds()".
Parameters:
  range - precise range duration, preferably a multiple of the unit,like "minutes()".
throws:
  IllegalArgumentException - if either duration field is imprecise
throws:
  IllegalArgumentException - if unit milliseconds is less than oneor effective value range is less than two.




Method Detail
addWrapField
public long addWrapField(long instant, int amount)(Code)
Add to the component of the specified time instant, wrapping around within that component if necessary.
Parameters:
  instant - the milliseconds from 1970-01-01T00:00:00Z to add to
Parameters:
  amount - the amount of units to add (can be negative). the updated time instant.



get
public int get(long instant)(Code)
Get the amount of fractional units from the specified time instant.
Parameters:
  instant - the milliseconds from 1970-01-01T00:00:00Z to query the amount of fractional units extracted from the input.



getMaximumValue
public int getMaximumValue()(Code)
Get the maximum value for the field. the maximum value



getRange
public int getRange()(Code)
Returns the range of the field in the field's units.

For example, 60 for seconds per minute. The field is allowed values from 0 to range - 1. unit range




getRangeDurationField
public DurationField getRangeDurationField()(Code)
Returns the range duration of this field. For example, if this field represents "minute of hour", then the range duration field is an hours. the range duration of this field, or null if field has no range



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.



Fields inherited from org.joda.time.field.PreciseDurationDateTimeField
final long iUnitMillis(Code)(Java Doc)

Methods inherited from org.joda.time.field.PreciseDurationDateTimeField
public DurationField getDurationField()(Code)(Java Doc)
protected int getMaximumValueForSet(long instant, int value)(Code)(Java Doc)
public int getMinimumValue()(Code)(Java Doc)
final public long getUnitMillis()(Code)(Java Doc)
public boolean isLenient()(Code)(Java Doc)
public long remainder(long instant)(Code)(Java Doc)
public long roundCeiling(long instant)(Code)(Java Doc)
public long roundFloor(long instant)(Code)(Java Doc)
public long set(long instant, int value)(Code)(Java Doc)

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.