Uses of Class
com.vaadin.shared.ui.datefield.Resolution
-
Packages that use Resolution Package Description com.vaadin.client com.vaadin.client.ui com.vaadin.data.validator com.vaadin.shared.ui.datefield com.vaadin.ui -
-
Uses of Resolution in com.vaadin.client
Methods in com.vaadin.client with parameters of type Resolution Modifier and Type Method Description static boolean
DateTimeService. isInRange(Date date, Date rangeStart, Date rangeEnd, Resolution resolution)
-
Uses of Resolution in com.vaadin.client.ui
Fields in com.vaadin.client.ui declared as Resolution Modifier and Type Field Description protected Resolution
VDateField. currentResolution
static Resolution
VDateField. RESOLUTION_DAY
Deprecated.static Resolution
VDateField. RESOLUTION_HOUR
Deprecated.static Resolution
VDateField. RESOLUTION_MIN
Deprecated.static Resolution
VDateField. RESOLUTION_MONTH
Deprecated.static Resolution
VDateField. RESOLUTION_SEC
Deprecated.static Resolution
VDateField. RESOLUTION_YEAR
Deprecated.Methods in com.vaadin.client.ui that return Resolution Modifier and Type Method Description Resolution
VDateField. getCurrentResolution()
Resolution
VCalendarPanel. getResolution()
Methods in com.vaadin.client.ui with parameters of type Resolution Modifier and Type Method Description static String
VDateField. resolutionToString(Resolution res)
For internal use only.void
VDateField. setCurrentResolution(Resolution currentResolution)
void
VCalendarPanel. setResolution(Resolution resolution)
-
Uses of Resolution in com.vaadin.data.validator
Constructors in com.vaadin.data.validator with parameters of type Resolution Constructor Description DateRangeValidator(String errorMessage, Date minValue, Date maxValue, Resolution resolution)
Creates a validator for checking that an Date is within a given range. -
Uses of Resolution in com.vaadin.shared.ui.datefield
Methods in com.vaadin.shared.ui.datefield that return Resolution Modifier and Type Method Description static Resolution
Resolution. valueOf(String name)
Returns the enum constant of this type with the specified name.static Resolution[]
Resolution. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in com.vaadin.shared.ui.datefield that return types with arguments of type Resolution Modifier and Type Method Description static Iterable<Resolution>
Resolution. getResolutionsHigherOrEqualTo(Resolution r)
Returns the resolutions that are higher or equal to the given resolution, starting from the given resolution.static List<Resolution>
Resolution. getResolutionsLowerThan(Resolution r)
Returns the resolutions that are lower than the given resolution, starting from the given resolution.Methods in com.vaadin.shared.ui.datefield with parameters of type Resolution Modifier and Type Method Description static Iterable<Resolution>
Resolution. getResolutionsHigherOrEqualTo(Resolution r)
Returns the resolutions that are higher or equal to the given resolution, starting from the given resolution.static List<Resolution>
Resolution. getResolutionsLowerThan(Resolution r)
Returns the resolutions that are lower than the given resolution, starting from the given resolution. -
Uses of Resolution in com.vaadin.ui
Fields in com.vaadin.ui declared as Resolution Modifier and Type Field Description static Resolution
DateField. RESOLUTION_DAY
Deprecated.As of 7.0, useDAY
static Resolution
DateField. RESOLUTION_HOUR
Deprecated.As of 7.0, useHOUR
static Resolution
DateField. RESOLUTION_MIN
Deprecated.As of 7.0, useMINUTE
static Resolution
DateField. RESOLUTION_MONTH
Deprecated.As of 7.0, useMONTH
static Resolution
DateField. RESOLUTION_SEC
Deprecated.As of 7.0, useSECOND
static Resolution
DateField. RESOLUTION_YEAR
Deprecated.As of 7.0, useYEAR
Methods in com.vaadin.ui that return Resolution Modifier and Type Method Description Resolution
DateField. getResolution()
Gets the resolution.Methods in com.vaadin.ui with parameters of type Resolution Modifier and Type Method Description void
DateField. setResolution(Resolution resolution)
Sets the resolution of the DateField.
-