public enum SignSemantic extends Enum<SignSemantic>
g
函数符号的语义枚举。
EventBasedScheduler
Enum Constant and Description |
---|
FEASIBLE_MEASUREMENT_WHEN_NEGATIVE
当测量可行时,探测器具有负g函数的语义。
|
FEASIBLE_MEASUREMENT_WHEN_POSITIVE
当测量可行时,探测器具有正g函数的语义。
|
Modifier and Type | Method and Description |
---|---|
boolean |
measurementIsFeasible(double g)
检查测量是否可行。
|
static SignSemantic |
valueOf(String name)
返回具有指定名称的枚举常量。
|
static SignSemantic[] |
values()
返回包含此枚举类型常量的数组,按照它们声明的顺序排列。
|
public static final SignSemantic FEASIBLE_MEASUREMENT_WHEN_POSITIVE
public static final SignSemantic FEASIBLE_MEASUREMENT_WHEN_NEGATIVE
public static SignSemantic[] values()
for (SignSemantic c : SignSemantic.values()) System.out.println(c);
public static SignSemantic valueOf(String name)
name
- 要返回的枚举常量的名称。
IllegalArgumentException
- 如果此枚举类型没有具有指定名称的常量
NullPointerException
- 如果参数为null
public boolean measurementIsFeasible(double g)
g
- 探测器g函数的值
Copyright © 2002-2023 CS GROUP. All rights reserved.