Java Code Examples for com.alibaba.rocketmq.common.TopicFilterType#valueOf()

The following examples show how to use com.alibaba.rocketmq.common.TopicFilterType#valueOf() . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: CreateTopicRequestHeader.java    From reading-and-annotate-rocketmq-3.4.6 with GNU General Public License v3.0 5 votes vote down vote up
@Override
public void checkFields() throws RemotingCommandException {
    try {
        TopicFilterType.valueOf(this.topicFilterType);
    }
    catch (Exception e) {
        throw new RemotingCommandException("topicFilterType = [" + topicFilterType + "] value invalid", e);
    }
}
 
Example 2
Source File: CreateTopicRequestHeader.java    From rocketmq with Apache License 2.0 5 votes vote down vote up
@Override
public void checkFields() throws RemotingCommandException {
    try {
        TopicFilterType.valueOf(this.topicFilterType);
    } catch (Exception e) {
        throw new RemotingCommandException("topicFilterType = [" + topicFilterType + "] value invalid", e);
    }
}
 
Example 3
Source File: CreateTopicRequestHeader.java    From RocketMQ-Master-analyze with Apache License 2.0 5 votes vote down vote up
@Override
public void checkFields() throws RemotingCommandException {
    try {
        TopicFilterType.valueOf(this.topicFilterType);
    }
    catch (Exception e) {
        throw new RemotingCommandException("topicFilterType = [" + topicFilterType + "] value invalid",
            e);
    }
}
 
Example 4
Source File: CreateTopicRequestHeader.java    From reading-and-annotate-rocketmq-3.4.6 with GNU General Public License v3.0 4 votes vote down vote up
public TopicFilterType getTopicFilterTypeEnum() {
    return TopicFilterType.valueOf(this.topicFilterType);
}
 
Example 5
Source File: CreateTopicRequestHeader.java    From rocketmq with Apache License 2.0 4 votes vote down vote up
public TopicFilterType getTopicFilterTypeEnum() {
    return TopicFilterType.valueOf(this.topicFilterType);
}
 
Example 6
Source File: CreateTopicRequestHeader.java    From RocketMQ-Master-analyze with Apache License 2.0 4 votes vote down vote up
public TopicFilterType getTopicFilterTypeEnum() {
    return TopicFilterType.valueOf(this.topicFilterType);
}