public enum ImportFormat extends Enum<ImportFormat>
Specifies import format.
Enum Constant and Description |
---|
Cgm
Computer Graphics Metafile format.
|
Modifier and Type | Method and Description |
---|---|
static ImportFormat |
getByValue(int value) |
int |
getValue() |
static ImportFormat |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ImportFormat[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ImportFormat Cgm
Computer Graphics Metafile format.
public static ImportFormat[] values()
for (ImportFormat c : ImportFormat.values()) System.out.println(c);
public static ImportFormat 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 nullpublic int getValue()
public static ImportFormat getByValue(int value)
Copyright © 2025 Aspose. All Rights Reserved.