Package org.bson.types
Class BSONTimestamp
- java.lang.Object
 - 
- org.bson.types.BSONTimestamp
 
 
- 
- All Implemented Interfaces:
 Serializable,Comparable<BSONTimestamp>
public final class BSONTimestamp extends Object implements Comparable<BSONTimestamp>, Serializable
This is used for internal increment values. For normal dates you should use java.util.Date time is seconds since epoch inc is an ordinal.- See Also:
 - Serialized Form
 - MongoDB documentation
 - Timestamps
 
 
- 
- 
Constructor Summary
Constructors Constructor Description BSONTimestamp()Creates a new instance.BSONTimestamp(int time, int increment)Creates a new instance. 
- 
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description intcompareTo(BSONTimestamp ts)booleanequals(Object obj)intgetInc()Gets the incrementing ordinal for operations within a given second.intgetTime()Gets the time in seconds since epochinthashCode()StringtoString() 
 - 
 
- 
- 
Constructor Detail
- 
BSONTimestamp
public BSONTimestamp()
Creates a new instance. 
- 
BSONTimestamp
public BSONTimestamp(int time, int increment)Creates a new instance.- Parameters:
 time- the time in seconds since epochincrement- an incrementing ordinal for operations within a given second- MongoDB documentation
 - Timestamps
 
 
 - 
 
- 
Method Detail
- 
getTime
public int getTime()
Gets the time in seconds since epoch- Returns:
 - an int representing time in seconds since epoch
 
 
- 
getInc
public int getInc()
Gets the incrementing ordinal for operations within a given second.- Returns:
 - the increment ordinal
 
 
- 
compareTo
public int compareTo(BSONTimestamp ts)
- Specified by:
 compareToin interfaceComparable<BSONTimestamp>
 
 - 
 
 -