public enum PrimitiveAnalysis extends Enum<PrimitiveAnalysis>
Enum Constant and Description |
---|
NOT_PRIMITIVE |
PRIMITIVE_KO |
PRIMITIVE_OK |
Modifier and Type | Method and Description |
---|---|
static PrimitiveAnalysis |
fromBoolean(boolean ok) |
static PrimitiveAnalysis |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PrimitiveAnalysis[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PrimitiveAnalysis NOT_PRIMITIVE
public static final PrimitiveAnalysis PRIMITIVE_OK
public static final PrimitiveAnalysis PRIMITIVE_KO
public static PrimitiveAnalysis[] values()
for (PrimitiveAnalysis c : PrimitiveAnalysis.values()) System.out.println(c);
public static PrimitiveAnalysis 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 PrimitiveAnalysis fromBoolean(boolean ok)
Copyright © 2018 Vitam. All rights reserved.