Package com.inet.report
Enum AbstractPictureElement.PictureProps
- java.lang.Object
-
- java.lang.Enum<AbstractPictureElement.PictureProps>
-
- com.inet.report.AbstractPictureElement.PictureProps
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<AbstractPictureElement.PictureProps>
- Enclosing class:
- AbstractPictureElement
public static enum AbstractPictureElement.PictureProps extends java.lang.Enum<AbstractPictureElement.PictureProps>
FOR INTERNAL USE ONLY
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CanShrink
CroppingBottom
CroppingLeft
CroppingRight
CroppingTop
DefaultAttribute
ImageKey
ImageLocation
ScaleHeight
ScaleMethod
ScaleOption
ScaleWidth
VerticalAlign
ZoomMethod
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static AbstractPictureElement.PictureProps
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static AbstractPictureElement.PictureProps[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
DefaultAttribute
public static final AbstractPictureElement.PictureProps DefaultAttribute
-
CroppingLeft
public static final AbstractPictureElement.PictureProps CroppingLeft
-
CroppingRight
public static final AbstractPictureElement.PictureProps CroppingRight
-
CroppingTop
public static final AbstractPictureElement.PictureProps CroppingTop
-
CroppingBottom
public static final AbstractPictureElement.PictureProps CroppingBottom
-
ScaleWidth
public static final AbstractPictureElement.PictureProps ScaleWidth
-
ScaleHeight
public static final AbstractPictureElement.PictureProps ScaleHeight
-
ScaleOption
public static final AbstractPictureElement.PictureProps ScaleOption
-
ScaleMethod
public static final AbstractPictureElement.PictureProps ScaleMethod
-
ZoomMethod
public static final AbstractPictureElement.PictureProps ZoomMethod
-
CanShrink
public static final AbstractPictureElement.PictureProps CanShrink
-
VerticalAlign
public static final AbstractPictureElement.PictureProps VerticalAlign
-
ImageLocation
public static final AbstractPictureElement.PictureProps ImageLocation
-
ImageKey
public static final AbstractPictureElement.PictureProps ImageKey
-
-
Method Detail
-
values
public static AbstractPictureElement.PictureProps[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (AbstractPictureElement.PictureProps c : AbstractPictureElement.PictureProps.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AbstractPictureElement.PictureProps valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
-