public static enum FrameFile.Flag extends Enum<FrameFile.Flag>
| Enum Constant and Description |
|---|
DELETE_ON_CLOSE
Delete the opened frame file when all references are closed.
|
| Modifier and Type | Method and Description |
|---|---|
static FrameFile.Flag |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FrameFile.Flag[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FrameFile.Flag DELETE_ON_CLOSE
public static FrameFile.Flag[] values()
for (FrameFile.Flag c : FrameFile.Flag.values()) System.out.println(c);
public static FrameFile.Flag 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 © 2011–2023 The Apache Software Foundation. All rights reserved.