public static enum RtfPicture.PictureType extends Enum<RtfPicture.PictureType>
| Enum Constant and Description |
|---|
AUTOMATIC
Type of the image will be figures out automatially.
|
JPG
Image type is JPG.
|
PNG
Image type is PNG.
|
| Modifier and Type | Method and Description |
|---|---|
static RtfPicture.PictureType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RtfPicture.PictureType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RtfPicture.PictureType AUTOMATIC
public static final RtfPicture.PictureType JPG
public static final RtfPicture.PictureType PNG
public static RtfPicture.PictureType[] values()
for (RtfPicture.PictureType c : RtfPicture.PictureType.values()) System.out.println(c);
public static RtfPicture.PictureType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2010–2015 Tutego. All rights reserved.