public enum ModifiedEnum extends Enum<ModifiedEnum>
Modifier and Type | Method and Description |
---|---|
static ModifiedEnum[] |
fromBooleans(boolean[] b,
int n) |
static boolean[] |
toBooleans(ModifiedEnum[] modified,
int n) |
static ModifiedEnum |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ModifiedEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ModifiedEnum INSERTED
public static final ModifiedEnum REMOVED
public static final ModifiedEnum UPDATED
public static final ModifiedEnum NONE
public static ModifiedEnum[] values()
for (ModifiedEnum c : ModifiedEnum.values()) System.out.println(c);
public static ModifiedEnum 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 static boolean[] toBooleans(ModifiedEnum[] modified, int n)
public static ModifiedEnum[] fromBooleans(boolean[] b, int n)
Copyright © 2006–2019 SYSTAP, LLC DBA Blazegraph. All rights reserved.