Package at.letto.tools.dto
Enum Class IMAGEUNIT
- All Implemented Interfaces:
Serializable
,Comparable<IMAGEUNIT>
,Constable
Einheiten welche für die Größenangaben von Bildern verwendet werden können
none : keine Angabe der Dateigröße
px : Pixel
pt : Punkte
cm : Zentimeter
percent : Prozent der Bildschirmbreite
em : Vielfache der Standardschriftgröße
none : keine Angabe der Dateigröße
px : Pixel
pt : Punkte
cm : Zentimeter
percent : Prozent der Bildschirmbreite
em : Vielfache der Standardschriftgröße
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum Constants -
Constructor Summary
Constructors -
Method Summary
-
Enum Constant Details
-
none
Keine Angabe der Dateigröße -
px
Angabe in Bildschirmpixel -
pt
Angabe in Punkten -
cm
Angabe in cm -
percent
Angabe in Prozent -
em
Angabe in Vielfachen der Standardschriftgröße
-
-
Constructor Details
-
IMAGEUNIT
private IMAGEUNIT()
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum class has no constant with the specified nameNullPointerException
- if the argument is null
-