jp.ne.mki.wedge.rule.compat10.common.check
クラス V10xCheckSubString

java.lang.Object
  |
  +--jp.ne.mki.wedge.rule.AbstractBusinessRule
        |
        +--jp.ne.mki.wedge.rule.compat10.common.check.V10xSkipRule
              |
              +--jp.ne.mki.wedge.rule.compat10.common.check.V10xCheckSubString
すべての実装インタフェース:
BusinessRuleInterface, RuleEngineInterface

public class V10xCheckSubString
extends V10xSkipRule

部分文字列を取得しチェックする。


パラメータにBeginIndex,EndIndex,CheckStrを指定する(カンマ区切り)。
入力項目から、beginIndex から始まり endIndex - 1 にある文字を取得し、
パラメータの比較文字と比較する。
Result : 一致=OK 不一致=USER_ERROR


[I/O RECORD]

InputRecord OutputRecord
  1. 入力項目を指定する(複数指定)

[RULE PARAMETER]

Parameter BeginIndex,EndIndex,CheckStrを指定する

バージョン:
1.0
作成者:
mki

フィールドの概要
(パッケージプライベート)  int intParam0
           
(パッケージプライベート)  int intParam1
           
(パッケージプライベート)  java.lang.String[] strParam
           
(パッケージプライベート)  java.lang.String strParam0
           
 
クラス jp.ne.mki.wedge.rule.AbstractBusinessRule から継承したフィールド
className, errorMessage, EXECUTE_BOTH, EXECUTE_CLIENT, EXECUTE_HTMLGATEWAY, EXECUTE_SERVER, EXECUTE_SERVERDC, id, inputRecord, logicalName, outputRecord, physicalName, ruleParameter, ruleType, serverParameter, TIMING_AFTER, TIMING_BEFORE, TIMING_LOAD, TIMING_ROW_CLICK, TIMING_ROW_WCLICK, TIMING_UN_LOAD
 
インタフェース jp.ne.mki.wedge.run.interfaces.BusinessRuleInterface から継承したフィールド
CANCEL, ERROR, OK, SKIP, USER_ERROR
 
コンストラクタの概要
V10xCheckSubString()
           
 
メソッドの概要
 int execute()
          変換処理を実行。
 void exit()
          終了処理。
 int getIOParameter()
          IOパラメータ取得。
protected  int loopInRecordSub(DataInterface inItem, int index)
          出力項目に、入力項目の変換後文字列を設定します。
 
クラス jp.ne.mki.wedge.rule.compat10.common.check.V10xSkipRule から継承したメソッド
executeParameterSkip
 
クラス jp.ne.mki.wedge.rule.AbstractBusinessRule から継承したメソッド
createErrorMessage, executeRule, executeRule, getAppAccount, getAppAuthority, getAppMenu, getAppPassword, getClassErrorName, getClientId, getClientRuleObject, getCodeBase, getComponent, getComponent, getConfig, getConfImagePath, getConnectionId, getConnectionPoolId, getConstantValue, getContentPane, getCurrentComponent, getDbAccessCount, getDbErrorCode, getDbErrorMessage, getDbStatus, getDbUpdatedRecordCount, getExceptionMessage, getExecuteIndex, getExecuteParameter, getExecuteTiming, getExecuteType, getExecutions, getExpectNextComponent, getFrame, getHtmlExecution, getHtmlManagerObject, getId, getImageIcon, getInRecord, getInRecord, getInRecord, getInRecordCount, getIpAddress_G_Index, getIpAddress_P_Index, getLogicalErrorName, getLogicalName, getManager, getOutRecord, getOutRecord, getOutRecord, getOutRecordCount, getPhysicalErrorName, getPhysicalName, getProjectId, getQueryEndLine, getQueryMaxCount, getQueryPageCount, getQueryStartLine, getReturnString, getRuleParameter, getRuleType, getRuleTypeName, getServerControlData, getServerData, getServerMessage, getServerParameter, getServerStatus, getServerSubName, getServerSubRevision, getServerTran, getStepParameter, getUpdateErrorLine, getUpdateTargetCount, getWebServerIpAddress, isApplet, isApplication, isClientTraceMode, isConpiled, isExecutable, isJWS, isServerTraceMode, isWeb, loopInOutRecord, loopInOutRecordSub, loopInRecord, loopOutRecord, loopOutRecordSub, setControlRecord, setControlRecord, setControlRecordVector, setExecuteParameter, setExecuteType, setFocus, setFocus, setFocus, setHtmlExecution, setHtmlManager, setId, setInRecord, setLogicalName, setManager, setOutRecord, setPhysicalName, setPropertyFromEngine, setRuleParameter, setRuleType, setServerControlData, setServerData, setServerParameter, setStatusBarText, setUserConstant, setWedgeLog, showDocument, showErrorDialog, showErrorDialogAddRuleName, showFrame, showFrame, terminate, writeLog, writeLog, writeTraceLog
 
クラス java.lang.Object から継承したメソッド
, clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

フィールドの詳細

intParam0

int intParam0

intParam1

int intParam1

strParam0

java.lang.String strParam0

strParam

java.lang.String[] strParam
コンストラクタの詳細

V10xCheckSubString

public V10xCheckSubString()
メソッドの詳細

execute

public int execute()
変換処理を実行。In/OutRecordに指定されているもの全てを処理する。
オーバーライド:
クラス V10xSkipRule 内の execute
戻り値:
int BusinessRuleの戻り値を参照

loopInRecordSub

protected int loopInRecordSub(DataInterface inItem,
                              int index)
出力項目に、入力項目の変換後文字列を設定します。
In/OutRecordの行数分繰り返し処理を行われます。
オーバーライド:
クラス AbstractBusinessRule 内の loopInRecordSub
戻り値:
int BusinessRuleの戻り値を参照

getIOParameter

public int getIOParameter()
IOパラメータ取得。execute の前に実行される。
オーバーライド:
クラス V10xSkipRule 内の getIOParameter
戻り値:
int OK=処理続行、ERROR=異常終了、CANCEL=処理を中断(正常終了)

exit

public void exit()
終了処理。保持していた変数などを開放する処理を記述します。
execute の後に実行されます。
正常終了・異常終了などに関わらず必ず実行されます。
オーバーライド:
クラス V10xSkipRule 内の exit