public enum EnumFundamental extends java.lang.Enum<EnumFundamental>
| Enum Constant and Description |
|---|
LINEAR_7
Exactly 7 points
Multiple solutions
Uncalibrated camera
|
LINEAR_8
8 or more points
Single solution
Uncalibrated camera
|
| Modifier and Type | Method and Description |
|---|---|
static EnumFundamental |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EnumFundamental[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EnumFundamental LINEAR_8
FundamentalLinear8public static final EnumFundamental LINEAR_7
FundamentalLinear7public static EnumFundamental[] values()
for (EnumFundamental c : EnumFundamental.values()) System.out.println(c);
public static EnumFundamental valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null