If 조건에 대한 맞춤형 패키지에서 조건을 추가합니다.
- 최종 업데이트2022/05/19
If 조건에 대한 맞춤형 패키지에서 조건을 추가합니다.
사용자 지정 패키지에서 조건을 추가합니다.
작업에서 조건 값 생성
- 조건을 생성하려면 BotCommand 주석 기호의 commandType 특성을 값과 함께 조건으로 설정합니다.
- 조건의 입력 방법을 정의하려면 ConditionTest 주석 기호를 사용합니다.
@BotCommand(commandType = Condition)
@CommandPkg(label = "File exists", name = "fileExists",
description = "Checks if the file exists.",
node_label = "file exists at {{sourceFilePath}}", icon = "")
public class Exist extends AbstractCondition {
@ConditionTest
public boolean test(@Idx(index = "1", type = FILE) @LocalFile @Pkg(label = "File path") @NotEmpty String sourceFilePath,
@Idx(index = "2", type = NUMBER) @Pkg(label = "How long you would like to wait for this condition
to be true?(Seconds)",
default_value = "0", default_value_type = DataType.NUMBER)
@GreaterThanEqualTo("0") @LessThanEqualTo("99999") @NotEmpty @NumberInteger Double waitTimeout) {
// Add the logic to check for the condition
}
}
다음 예에서는 제공된 부울 값이 false인지 확인합니다.
commandType을 조건으로 설정합니다.
@BotCommand(commandType = Condition)
@CommandPkg(label = "False condition example", name = "conditionalTypeExample",
description = "Checks if the boolean value is false.")
public class ConditionalTypeExample {
@ConditionTest
public Boolean validate(
@Idx(index = "1", type = AttributeType.BOOLEAN)
@VariableType(BOOLEAN)
@Pkg(label = "Boolean variable", default_value_type = BOOLEAN) @NotEmpty Boolean variable
) {
return variable == null ? false : !variable ;
}