package com.example.test.framework.enums;
/**
* Message matching type
*/
public enum MessageMatchType {
/** The exact message will be checked. */
EXACT(0),
/** The partial of the original message text is matched. */
PARTIAL(1);
/** The key. */
private int key;
private MessageMatchType(int key) {
this.key = key;
}
public int getKey() {
return key;
}
}
No comments:
Post a Comment