FrequencyPattern

curam.util.type.FrequencyPattern 유형의 리터럴 FrequencyPattern 상수 값입니다.

FrequencyPattern의 값은 9자리 숫자로 지정되어야 합니다. 숫자 문자열의 의미는 curam.util.type.FrequencyPattern의 JavaDoc을 참조하십시오.

<?xml version="1.0" encoding="UTF-8"?>
<RuleSet name="Example_FrequencyPattern"
  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  xsi:noNamespaceSchemaLocation=
"http://www.curamsoftware.com/CreoleRulesSchema.xsd">
  <Class name="FrequencyPatternExampleRuleClass">

    <Attribute name="nullFrequencyPattern">
      <type>
        <javaclass name="curam.util.type.FrequencyPattern"/>
      </type>
      <derivation>
        <!-- 널 FrequencyPattern -->
        <null/>
      </derivation>
    </Attribute>

    <Attribute name="weeklyOnMondays">
      <type>
        <javaclass name="curam.util.type.FrequencyPattern"/>
      </type>
      <derivation>
        <!-- "매주 월요일"의
             빈도 패턴 문자열 -->
        <FrequencyPattern value="100100100"/>
      </derivation>
    </Attribute>

  </Class>

</RuleSet>