Package org.n52.series.db.beans
Interface HibernateRelations.HasResultTimes<T>
-
- All Known Implementing Classes:
OfferingEntity
- Enclosing interface:
- HibernateRelations
public static interface HibernateRelations.HasResultTimes<T>
-
-
Field Summary
Fields Modifier and Type Field Description static StringRESULT_TIME_ENDstatic StringRESULT_TIME_START
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description DategetResultTimeEnd()Get the end result timeDategetResultTimeStart()Get the start result timedefault booleanhasResultTimeEnd()default booleanhasResultTimeStart()TsetResultTimeEnd(Date resultTimeEnd)Set the end result timeTsetResultTimeStart(Date resultTimeStart)Set the start result time
-
-
-
Field Detail
-
RESULT_TIME_START
static final String RESULT_TIME_START
- See Also:
- Constant Field Values
-
RESULT_TIME_END
static final String RESULT_TIME_END
- See Also:
- Constant Field Values
-
-
Method Detail
-
getResultTimeStart
Date getResultTimeStart()
Get the start result time- Returns:
- Start result time
-
setResultTimeStart
T setResultTimeStart(Date resultTimeStart)
Set the start result time- Parameters:
resultTimeStart- Start result time to set- Returns:
- this
-
hasResultTimeStart
default boolean hasResultTimeStart()
-
getResultTimeEnd
Date getResultTimeEnd()
Get the end result time- Returns:
- End result time
-
setResultTimeEnd
T setResultTimeEnd(Date resultTimeEnd)
Set the end result time- Parameters:
resultTimeEnd- End result time to set- Returns:
- this
-
hasResultTimeEnd
default boolean hasResultTimeEnd()
-
-