You are viewing a plain text version of this content. The canonical link for it is here.
Posted to jdo-commits@db.apache.org by an...@apache.org on 2016/01/20 12:51:51 UTC

svn commit: r1725704 - in /db/jdo/trunk/api/src/java/javax/jdo/query: LocalDateExpression.java LocalDateTimeExpression.java LocalTimeExpression.java

Author: andyj
Date: Wed Jan 20 11:51:51 2016
New Revision: 1725704

URL: http://svn.apache.org/viewvc?rev=1725704&view=rev
Log:
JDO-749 Add expressions for java.time types

Added:
    db/jdo/trunk/api/src/java/javax/jdo/query/LocalDateExpression.java
    db/jdo/trunk/api/src/java/javax/jdo/query/LocalDateTimeExpression.java
    db/jdo/trunk/api/src/java/javax/jdo/query/LocalTimeExpression.java

Added: db/jdo/trunk/api/src/java/javax/jdo/query/LocalDateExpression.java
URL: http://svn.apache.org/viewvc/db/jdo/trunk/api/src/java/javax/jdo/query/LocalDateExpression.java?rev=1725704&view=auto
==============================================================================
--- db/jdo/trunk/api/src/java/javax/jdo/query/LocalDateExpression.java (added)
+++ db/jdo/trunk/api/src/java/javax/jdo/query/LocalDateExpression.java Wed Jan 20 11:51:51 2016
@@ -0,0 +1,44 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ * 
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ * 
+ * Unless required by applicable law or agreed to in writing, software 
+ * distributed under the License is distributed on an "AS IS" BASIS, 
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 
+ * See the License for the specific language governing permissions and 
+ * limitations under the License.
+ */
+package javax.jdo.query;
+
+import javax.jdo.query.ComparableExpression;
+import javax.jdo.query.NumericExpression;
+
+/**
+ * Representation of a java.time.LocalDate in a query.
+ */
+public interface LocalDateExpression extends ComparableExpression<java.time.LocalDate>
+{
+    /**
+     * Accessor for the year of this date.
+     * @return Expression for the year
+     */
+    NumericExpression<Integer> getYear();
+
+    /**
+     * Accessor for the month of this date.
+     * @return Expression for the month
+     */
+    NumericExpression<Integer> getMonthValue();
+
+    /**
+     * Accessor for the day (of the month) of this date.
+     * @return Expression for the day of the month
+     */
+    NumericExpression<Integer> getDayOfMonth();
+}

Added: db/jdo/trunk/api/src/java/javax/jdo/query/LocalDateTimeExpression.java
URL: http://svn.apache.org/viewvc/db/jdo/trunk/api/src/java/javax/jdo/query/LocalDateTimeExpression.java?rev=1725704&view=auto
==============================================================================
--- db/jdo/trunk/api/src/java/javax/jdo/query/LocalDateTimeExpression.java (added)
+++ db/jdo/trunk/api/src/java/javax/jdo/query/LocalDateTimeExpression.java Wed Jan 20 11:51:51 2016
@@ -0,0 +1,62 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ * 
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ * 
+ * Unless required by applicable law or agreed to in writing, software 
+ * distributed under the License is distributed on an "AS IS" BASIS, 
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 
+ * See the License for the specific language governing permissions and 
+ * limitations under the License.
+ */
+package javax.jdo.query;
+
+import javax.jdo.query.ComparableExpression;
+import javax.jdo.query.NumericExpression;
+
+/**
+ * Representation of a java.time.LocalDateTime type in a query.
+ */
+public interface LocalDateTimeExpression extends ComparableExpression<java.time.LocalDateTime>
+{
+    /**
+     * Accessor for the year of this date-time.
+     * @return Expression for the year
+     */
+    NumericExpression<Integer> getYear();
+
+    /**
+     * Accessor for the month of this date-time.
+     * @return Expression for the month
+     */
+    NumericExpression<Integer> getMonthValue();
+
+    /**
+     * Accessor for the day (of the month) of this date-time.
+     * @return Expression for the day of the month
+     */
+    NumericExpression<Integer> getDayOfMonth();
+
+    /**
+     * Accessor for the hour of this date-time.
+     * @return Expression for the hour
+     */
+    NumericExpression<Integer> getHour();
+
+    /**
+     * Accessor for the minute of this date-time.
+     * @return Expression for the minute
+     */
+    NumericExpression<Integer> getMinute();
+
+    /**
+     * Accessor for the second of this date-time.
+     * @return Expression for the second
+     */
+    NumericExpression<Integer> getSecond();
+}

Added: db/jdo/trunk/api/src/java/javax/jdo/query/LocalTimeExpression.java
URL: http://svn.apache.org/viewvc/db/jdo/trunk/api/src/java/javax/jdo/query/LocalTimeExpression.java?rev=1725704&view=auto
==============================================================================
--- db/jdo/trunk/api/src/java/javax/jdo/query/LocalTimeExpression.java (added)
+++ db/jdo/trunk/api/src/java/javax/jdo/query/LocalTimeExpression.java Wed Jan 20 11:51:51 2016
@@ -0,0 +1,44 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ * 
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ * 
+ * Unless required by applicable law or agreed to in writing, software 
+ * distributed under the License is distributed on an "AS IS" BASIS, 
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 
+ * See the License for the specific language governing permissions and 
+ * limitations under the License.
+ */
+package javax.jdo.query;
+
+import javax.jdo.query.ComparableExpression;
+import javax.jdo.query.NumericExpression;
+
+/**
+ * Representation of a java.time.LocalTime in a query.
+ */
+public interface LocalTimeExpression extends ComparableExpression<java.time.LocalTime>
+{
+    /**
+     * Accessor for the hour of this time.
+     * @return Expression for the hour
+     */
+    NumericExpression<Integer> getHour();
+
+    /**
+     * Accessor for the minute of this time.
+     * @return Expression for the minute
+     */
+    NumericExpression<Integer> getMinute();
+
+    /**
+     * Accessor for the second of this time.
+     * @return Expression for the second
+     */
+    NumericExpression<Integer> getSecond();
+}