Java com.vaadin.ui Slider fields, constructors, methods, implement or subclass

Example usage for Java com.vaadin.ui Slider fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for com.vaadin.ui Slider.

The text is from its open source code.

Subclass

com.vaadin.ui.Slider has subclasses.
Click this link to see all its subclasses.

Constructor

Slider(String caption)
Create a new slider with the caption given as parameter.
Slider()
Default slider constructor.
Slider(int min, int max)
Create a new slider with the given range of integers.
Slider(double min, double max, int resolution)
Create a new slider with the given range and resolution.
Slider(String caption, int min, int max)
Creates a new slider with the given caption and integer range.

Method

doublegetMax()
Gets the maximum slider value.
doublegetMin()
Gets the minimum slider value.
SliderStategetState()
DoublegetValue()
voidsetMax(double max)
Sets the maximum slider value.
voidsetMin(double min)
Sets the minimum slider value.
voidsetOrientation(SliderOrientation orientation)
Sets the orientation of the slider.
voidsetResolution(int resolution)
Set a new resolution for the slider.
voidsetValue(Double value)
Sets the value of this object.