public final class ConstantSize extends Object implements Size, Serializable
Size
interface that represents constant
sizes described by a value and unit, for example:
10 pixel, 15 point or 4 dialog units.
You can get instances of ConstantSize
using
the factory methods and constants in the Sizes
class.
Logical constant sizes that vary with the current layout style
are delivered by the LayoutStyle
class.This class supports different size units:
Unit | Abbreviation | Size |
Millimeter | mm | 0.1 cm |
Centimeter | cm | 10.0 mm |
Inch | in | 25.4 mm |
DTP Point | pt | 1/72 in |
Pixel | px | 1/(resolution in dpi) in |
Dialog Unit | dlu | honors l&f, resolution, and dialog font size |
Examples:
Sizes.ZERO; Sizes.DLUX9; Sizes.dluX(42); Sizes.pixel(99);
Size
,
Sizes
,
Serialized FormModifier and Type | Class and Description |
---|---|
static class |
ConstantSize.Unit
An ordinal-based serializable typesafe enumeration for units
as used in instances of
ConstantSize . |
Modifier and Type | Field and Description |
---|---|
static ConstantSize.Unit |
CENTIMETER |
static ConstantSize.Unit |
CM |
static ConstantSize.Unit |
DIALOG_UNITS_X |
static ConstantSize.Unit |
DIALOG_UNITS_Y |
static ConstantSize.Unit |
DLUX |
static ConstantSize.Unit |
DLUY |
static ConstantSize.Unit |
IN |
static ConstantSize.Unit |
INCH |
static ConstantSize.Unit |
MILLIMETER |
static ConstantSize.Unit |
MM |
static ConstantSize.Unit |
PIXEL |
static ConstantSize.Unit |
POINT |
static ConstantSize.Unit |
PT |
static ConstantSize.Unit |
PX |
Constructor and Description |
---|
ConstantSize(double value,
ConstantSize.Unit unit)
Constructs a ConstantSize for the given size and unit.
|
ConstantSize(int value,
ConstantSize.Unit unit)
Constructs a ConstantSize for the given size and unit.
|
Modifier and Type | Method and Description |
---|---|
boolean |
compressible()
Describes if this Size can be compressed, if container space gets scarce.
|
String |
encode()
Returns a parseable string representation of this constant size.
|
boolean |
equals(Object o)
Indicates whether some other ConstantSize is "equal to" this one.
|
int |
getPixelSize(Component component)
Converts the size if necessary and returns the value in pixels.
|
ConstantSize.Unit |
getUnit()
Returns this size's unit.
|
double |
getValue()
Returns this size's value.
|
int |
hashCode()
Returns a hash code value for the object.
|
int |
maximumSize(Container container,
List components,
FormLayout.Measure minMeasure,
FormLayout.Measure prefMeasure,
FormLayout.Measure defaultMeasure)
Returns this size as pixel size.
|
String |
toString()
Returns a string representation of this size object.
|
public static final ConstantSize.Unit PIXEL
public static final ConstantSize.Unit POINT
public static final ConstantSize.Unit DIALOG_UNITS_X
public static final ConstantSize.Unit DIALOG_UNITS_Y
public static final ConstantSize.Unit MILLIMETER
public static final ConstantSize.Unit CENTIMETER
public static final ConstantSize.Unit INCH
public static final ConstantSize.Unit PX
public static final ConstantSize.Unit PT
public static final ConstantSize.Unit DLUX
public static final ConstantSize.Unit DLUY
public static final ConstantSize.Unit MM
public static final ConstantSize.Unit CM
public static final ConstantSize.Unit IN
public ConstantSize(int value, ConstantSize.Unit unit)
value
- the size value interpreted in the given unitsunit
- the size's unitpublic ConstantSize(double value, ConstantSize.Unit unit)
value
- the size value interpreted in the given unitsunit
- the size's unitpublic double getValue()
public ConstantSize.Unit getUnit()
public int getPixelSize(Component component)
component
- the associated componentpublic int maximumSize(Container container, List components, FormLayout.Measure minMeasure, FormLayout.Measure prefMeasure, FormLayout.Measure defaultMeasure)
Invoked by FormSpec
to determine
the size of a column or row.
maximumSize
in interface Size
container
- the layout containercomponents
- the list of components used to compute the sizeminMeasure
- the measure that determines the minimum sizesprefMeasure
- the measure that determines the preferred sizesdefaultMeasure
- the measure that determines the default sizespublic boolean compressible()
#compressedSizes
to check whether a column or row can be compressed or not.ConstantSizes are incompressible.
compressible
in interface Size
false
public boolean equals(Object o)
equals
in class Object
o
- the Object with which to comparetrue
if this object is the same as the obj
argument; false
otherwise.Object.hashCode()
,
Hashtable
public int hashCode()
java.util.Hashtable
.hashCode
in class Object
Object.equals(java.lang.Object)
,
Hashtable
public String toString()
encode()
instead.Copyright © 2002-2014 JGoodies Software GmbH. All Rights Reserved.