Uses of Interface
org.jboss.dna.graph.property.DateTime

Packages that use DateTime
org.jboss.dna.connector.store.jpa.model.common The classes that define the common JPA entities used in multiple storage models. 
org.jboss.dna.graph The JBoss DNA Graph API defines the types that allow you to work with content organized as a graph. 
org.jboss.dna.graph.cache Caching of graph content is controlled with cache policies, and these are used in connectors and in requests (among other places). 
org.jboss.dna.graph.observe The Observation API provides several mechanisms for asynchronously observing changes to content. 
org.jboss.dna.graph.property Nodes in a graph contain properties, and this package defines the interfaces, classes and exceptions for representing and working with properties and their values. 
org.jboss.dna.graph.property.basic A set of basic implementations of the various interfaces defined in org.jboss.dna.graph.property
org.jboss.dna.graph.query The Query API provides a mechanism for building and executing queries. 
org.jboss.dna.graph.request Sometimes its useful to work with a graph using objects that represent individual commands on the graph. 
org.jboss.dna.graph.request.processor This portion of the JBoss DNA Graph API defines the processor for requests
org.jboss.dna.graph.session A graph session provides a stateful environment in which graph operations can be enqueued and the state and structure of the graph are cached. 
 

Uses of DateTime in org.jboss.dna.connector.store.jpa.model.common
 

Constructors in org.jboss.dna.connector.store.jpa.model.common with parameters of type DateTime
ChangeLogEntity(String username, DateTime timestamp, int numChanges, byte[] changes)
           
 

Uses of DateTime in org.jboss.dna.graph
 

Methods in org.jboss.dna.graph that return DateTime
 DateTime Node.getExpirationTime()
          Get the time at which this node representation should no longer be used.
 

Methods in org.jboss.dna.graph with parameters of type DateTime
 Next Graph.SetValuesTo.to(DateTime value)
          Set the property value to the given date-time instant.
 

Uses of DateTime in org.jboss.dna.graph.cache
 

Methods in org.jboss.dna.graph.cache that return DateTime
 DateTime Cacheable.getTimeLoaded()
          Get the time that this node data was originally loaded.
 

Uses of DateTime in org.jboss.dna.graph.observe
 

Methods in org.jboss.dna.graph.observe that return DateTime
 DateTime Changes.getTimestamp()
          Get the timestamp that the changes were made.
 

Constructors in org.jboss.dna.graph.observe with parameters of type DateTime
Changes(String processId, String contextId, String userName, String sourceName, DateTime timestamp, List<ChangeRequest> requests)
           
 

Uses of DateTime in org.jboss.dna.graph.property
 

Fields in org.jboss.dna.graph.property with type parameters of type DateTime
static Comparator<DateTime> ValueComparators.DATE_TIME_COMPARATOR
          A comparator of date-time instances.
 

Methods in org.jboss.dna.graph.property that return DateTime
 DateTime DateTimeFactory.create()
          Create a date-time instance for the current time in the local time zone.
 DateTime DateTimeFactory.create(DateTime original, long offsetInMillis)
          Create a date-time instance that is offset from the original by the specified amount.
 DateTime DateTimeFactory.create(int year, int monthOfYear, int dayOfMonth, int hourOfDay, int minuteOfHour, int secondOfMinute, int millisecondsOfSecond)
          Create a date-time instance given the individual values for the fields
 DateTime DateTimeFactory.create(int year, int monthOfYear, int dayOfMonth, int hourOfDay, int minuteOfHour, int secondOfMinute, int millisecondsOfSecond, int timeZoneOffsetHours)
          Create a date-time instance given the individual values for the fields
 DateTime DateTimeFactory.create(int year, int monthOfYear, int dayOfMonth, int hourOfDay, int minuteOfHour, int secondOfMinute, int millisecondsOfSecond, String timeZoneId)
          Create a date-time instance given the individual values for the fields
 DateTime DateTimeFactory.createUtc()
          Create a date-time instance for the current time in UTC.
 DateTime DateTime.minus(long timeAmount, TimeUnit unit)
          Subtract the specified about of time in the supplied units.
 DateTime DateTime.minusDays(int days)
          Subtract the specified number of days from this time instant.
 DateTime DateTime.minusHours(int hours)
          Subtract the specified number of hours from this time instant.
 DateTime DateTime.minusMillis(int milliseconds)
          Subtract the specified number of milliseconds from this time instant.
 DateTime DateTime.minusMinutes(int minutes)
          Subtract the specified number of minutes from this time instant.
 DateTime DateTime.minusMonths(int months)
          Subtract the specified number of months from this time instant.
 DateTime DateTime.minusSeconds(int seconds)
          Subtract the specified number of seconds from this time instant.
 DateTime DateTime.minusWeeks(int weeks)
          Subtract the specified number of weeks from this time instant.
 DateTime DateTime.minusYears(int years)
          Subtract the specified number of years from this time instant.
 DateTime DateTime.plus(long timeAmount, TimeUnit unit)
          Add the specified about of time in the supplied units.
 DateTime DateTime.plusDays(int days)
          Add the specified number of days from this time instant.
 DateTime DateTime.plusHours(int hours)
          Add the specified number of hours from this time instant.
 DateTime DateTime.plusMillis(int milliseconds)
          Add the specified number of milliseconds from this time instant.
 DateTime DateTime.plusMinutes(int minutes)
          Add the specified number of minutes from this time instant.
 DateTime DateTime.plusMonths(int months)
          Add the specified number of months from this time instant.
 DateTime DateTime.plusSeconds(int seconds)
          Add the specified number of seconds from this time instant.
 DateTime DateTime.plusWeeks(int weeks)
          Add the specified number of weeks from this time instant.
 DateTime DateTime.plusYears(int years)
          Add the specified number of years from this time instant.
 DateTime DateTime.toTimeZone(String timeZoneId)
          Convert this time to the time zone given by the supplied identifier.
 DateTime DateTime.toUtcTimeZone()
          Convert this time to the same instant in the UTC time zone.
 

Methods in org.jboss.dna.graph.property with parameters of type DateTime
 T ValueFactory.create(DateTime value)
          Create a value from a date-time instant.
 T[] ValueFactory.create(DateTime[] values)
          Create an array of values from an array of DateTime instants.
 DateTime DateTimeFactory.create(DateTime original, long offsetInMillis)
          Create a date-time instance that is offset from the original by the specified amount.
 boolean DateTime.isAfter(DateTime other)
          Return whether this date-time is later than the supplied date-time.
 boolean DateTime.isBefore(DateTime other)
          Return whether this date-time is earlier than the supplied date-time.
 boolean DateTime.isSameAs(DateTime other)
          Return whether this date-time is exactly the the same as the supplied date-time.
 

Uses of DateTime in org.jboss.dna.graph.property.basic
 

Classes in org.jboss.dna.graph.property.basic that implement DateTime
 class JodaDateTime
          Implementation of DateTime based upon the Joda-Time library.
 

Methods in org.jboss.dna.graph.property.basic that return DateTime
 DateTime JodaDateTimeValueFactory.create()
          Create a date-time instance for the current time in the local time zone.
 DateTime JodaDateTimeValueFactory.create(BigDecimal value)
          Create a value from a decimal.
 DateTime JodaDateTimeValueFactory.create(Binary value)
          Create a value from the binary content given by the supplied stream.
 DateTime JodaDateTimeValueFactory.create(boolean value)
          Create a boolean from a string.
 DateTime JodaDateTimeValueFactory.create(byte[] value)
          Create a value from the binary content given by the supplied array.
 DateTime JodaDateTimeValueFactory.create(Calendar value)
          Create a value from a Calendar instance.
 DateTime JodaDateTimeValueFactory.create(Date value)
          Create a value from a date.
 DateTime JodaDateTimeValueFactory.create(DateTime value)
          Create a value from a date-time instant.
 DateTime JodaDateTimeValueFactory.create(DateTime original, long offsetInMillis)
          Create a date-time instance that is offset from the original by the specified amount.
 DateTime JodaDateTimeValueFactory.create(double value)
          Create a value from a double.
 DateTime JodaDateTimeValueFactory.create(float value)
          Create a value from a float.
 DateTime JodaDateTimeValueFactory.create(InputStream stream, long approximateLength)
          Create a value from the binary content given by the supplied stream.
 DateTime JodaDateTimeValueFactory.create(int value)
          Create a value from an integer.
 DateTime JodaDateTimeValueFactory.create(int year, int monthOfYear, int dayOfMonth, int hourOfDay, int minuteOfHour, int secondOfMinute, int millisecondsOfSecond)
          Create a date-time instance given the individual values for the fields
 DateTime JodaDateTimeValueFactory.create(int year, int monthOfYear, int dayOfMonth, int hourOfDay, int minuteOfHour, int secondOfMinute, int millisecondsOfSecond, int timeZoneOffsetHours)
          Create a date-time instance given the individual values for the fields
 DateTime JodaDateTimeValueFactory.create(int year, int monthOfYear, int dayOfMonth, int hourOfDay, int minuteOfHour, int secondOfMinute, int millisecondsOfSecond, String timeZoneId)
          Create a date-time instance given the individual values for the fields
 DateTime JodaDateTimeValueFactory.create(long value)
          Create a long from a string.
 DateTime JodaDateTimeValueFactory.create(Name value)
          Create a value from a name.
 DateTime JodaDateTimeValueFactory.create(Path value)
          Create a value from a path.
 DateTime JodaDateTimeValueFactory.create(Reader reader, long approximateLength)
          Create a value from a the binary content given by the supplied reader.
 DateTime JodaDateTimeValueFactory.create(Reference value)
          Create a value from a reference.
 DateTime JodaDateTimeValueFactory.create(String value)
          Create a value from a string, using no decoding.
 DateTime JodaDateTimeValueFactory.create(String value, TextDecoder decoder)
          Create a value from a string, using the supplied decoder.
 DateTime JodaDateTimeValueFactory.create(URI value)
          Create a value from a URI.
 DateTime JodaDateTimeValueFactory.create(UUID value)
          Create a value from a UUID.
 DateTime JodaDateTimeValueFactory.createUtc()
          Create a date-time instance for the current time in UTC.
 DateTime JodaDateTime.minus(long timeAmount, TimeUnit unit)
          Subtract the specified about of time in the supplied units.
 DateTime JodaDateTime.minusDays(int days)
          Subtract the specified number of days from this time instant.
 DateTime JodaDateTime.minusHours(int hours)
          Subtract the specified number of hours from this time instant.
 DateTime JodaDateTime.minusMillis(int milliseconds)
          Subtract the specified number of milliseconds from this time instant.
 DateTime JodaDateTime.minusMinutes(int minutes)
          Subtract the specified number of minutes from this time instant.
 DateTime JodaDateTime.minusMonths(int months)
          Subtract the specified number of months from this time instant.
 DateTime JodaDateTime.minusSeconds(int seconds)
          Subtract the specified number of seconds from this time instant.
 DateTime JodaDateTime.minusWeeks(int weeks)
          Subtract the specified number of weeks from this time instant.
 DateTime JodaDateTime.minusYears(int years)
          Subtract the specified number of years from this time instant.
 DateTime JodaDateTime.plus(long timeAmount, TimeUnit unit)
          Add the specified about of time in the supplied units.
 DateTime JodaDateTime.plusDays(int days)
          Add the specified number of days from this time instant.
 DateTime JodaDateTime.plusHours(int hours)
          Add the specified number of hours from this time instant.
 DateTime JodaDateTime.plusMillis(int milliseconds)
          Add the specified number of milliseconds from this time instant.
 DateTime JodaDateTime.plusMinutes(int minutes)
          Add the specified number of minutes from this time instant.
 DateTime JodaDateTime.plusMonths(int months)
          Add the specified number of months from this time instant.
 DateTime JodaDateTime.plusSeconds(int seconds)
          Add the specified number of seconds from this time instant.
 DateTime JodaDateTime.plusWeeks(int weeks)
          Add the specified number of weeks from this time instant.
 DateTime JodaDateTime.plusYears(int years)
          Add the specified number of years from this time instant.
 DateTime JodaDateTime.toTimeZone(String timeZoneId)
          Convert this time to the time zone given by the supplied identifier.
 DateTime JodaDateTime.toUtcTimeZone()
          Convert this time to the same instant in the UTC time zone.
 

Methods in org.jboss.dna.graph.property.basic with parameters of type DateTime
 int JodaDateTime.compareTo(DateTime that)
          
 UUID UuidValueFactory.create(DateTime value)
          Create a value from a date-time instant.
 Reference UuidReferenceValueFactory.create(DateTime value)
          Create a value from a date-time instant.
 URI UriValueFactory.create(DateTime value)
          Create a value from a date-time instant.
 String StringValueFactory.create(DateTime value)
          Create a value from a date-time instant.
 Path PathValueFactory.create(DateTime value)
          Create a value from a date-time instant.
 Object ObjectValueFactory.create(DateTime value)
          Create a value from a date-time instant.
 Name NameValueFactory.create(DateTime value)
          Create a value from a date-time instant.
 Long LongValueFactory.create(DateTime value)
          Create a value from a date-time instant.
 DateTime JodaDateTimeValueFactory.create(DateTime value)
          Create a value from a date-time instant.
 Double DoubleValueFactory.create(DateTime value)
          Create a value from a date-time instant.
 BigDecimal DecimalValueFactory.create(DateTime value)
          Create a value from a date-time instant.
 Boolean BooleanValueFactory.create(DateTime value)
          Create a value from a date-time instant.
 Binary AbstractBinaryValueFactory.create(DateTime value)
          Create a value from a date-time instant.
 T[] AbstractValueFactory.create(DateTime[] values)
          Create an array of values from an array of DateTime instants.
 DateTime JodaDateTimeValueFactory.create(DateTime original, long offsetInMillis)
          Create a date-time instance that is offset from the original by the specified amount.
 boolean JodaDateTime.isAfter(DateTime other)
          Return whether this date-time is later than the supplied date-time.
 boolean JodaDateTime.isBefore(DateTime other)
          Return whether this date-time is earlier than the supplied date-time.
 boolean JodaDateTime.isSameAs(DateTime other)
          Return whether this date-time is exactly the the same as the supplied date-time.
 

Uses of DateTime in org.jboss.dna.graph.query
 

Methods in org.jboss.dna.graph.query with parameters of type DateTime
 QueryBuilder.CastAs<QueryBuilder.ConstraintBuilder> QueryBuilder.RightHandSide.cast(DateTime literal)
          Define the right-hand side of a comparison.
 QueryBuilder.CastAs<QueryBuilder.ConstraintBuilder> QueryBuilder.UpperBoundary.cast(DateTime literal)
          Define the upper boundary value of a range.
 QueryBuilder.CastAs<QueryBuilder.AndBuilder<QueryBuilder.UpperBoundary>> QueryBuilder.LowerBoundary.cast(DateTime literal)
          Define the lower boundary value of a range.
 QueryBuilder.ConstraintBuilder QueryBuilder.RightHandSide.literal(DateTime literal)
          Define the right-hand side of a comparison.
 QueryBuilder.ConstraintBuilder QueryBuilder.UpperBoundary.literal(DateTime literal)
          Define the upper boundary value of a range.
 QueryBuilder.AndBuilder<QueryBuilder.UpperBoundary> QueryBuilder.LowerBoundary.literal(DateTime literal)
          Define the lower boundary value of a range.
 

Uses of DateTime in org.jboss.dna.graph.request
 

Methods in org.jboss.dna.graph.request that return DateTime
 DateTime CacheableRequest.getTimeLoaded()
          Get the time that this node data was originally loaded.
 

Methods in org.jboss.dna.graph.request with parameters of type DateTime
 void CacheableRequest.setTimeLoaded(DateTime timeLoaded)
           
 

Uses of DateTime in org.jboss.dna.graph.request.processor
 

Methods in org.jboss.dna.graph.request.processor that return DateTime
 DateTime RequestProcessor.getNowInUtc()
          Get the 'current time' for this processor, which is usually a constant during its lifetime.
 

Uses of DateTime in org.jboss.dna.graph.session
 

Methods in org.jboss.dna.graph.session with parameters of type DateTime
 void GraphSession.Node.loadedWith(List<Location> children, Map<Name,GraphSession.PropertyInfo<PropertyPayload>> properties, DateTime expirationTime)
          Define the persistent child information that this node is to be populated with.
 



Copyright © 2008-2010 JBoss, a division of Red Hat. All Rights Reserved.