
org.eobjects.analyzer.beans.stringpattern.PredefinedTokenDefinition Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of AnalyzerBeans-pattern-finder
Show all versions of AnalyzerBeans-pattern-finder
Pattern finder component for AnalyzerBeans
The newest version!
/**
* AnalyzerBeans
* Copyright (C) 2014 Neopost - Customer Information Management
*
* This copyrighted material is made available to anyone wishing to use, modify,
* copy, or redistribute it subject to the terms and conditions of the GNU
* Lesser General Public License, as published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License
* for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this distribution; if not, write to:
* Free Software Foundation, Inc.
* 51 Franklin Street, Fifth Floor
* Boston, MA 02110-1301 USA
*/
package org.eobjects.analyzer.beans.stringpattern;
import java.io.Serializable;
import java.util.Collections;
import java.util.LinkedHashSet;
import java.util.Set;
import java.util.regex.Pattern;
public class PredefinedTokenDefinition implements Serializable {
private static final long serialVersionUID = 1L;
private String _name;
private Set _tokenRegexes;
private Set _tokenRegexPatterns;
public PredefinedTokenDefinition(String name, Set tokenRegexes) {
_name = name;
_tokenRegexes = tokenRegexes;
}
public PredefinedTokenDefinition(String name, String... tokenRegexes) {
_name = name;
_tokenRegexes = new LinkedHashSet();
for (String string : tokenRegexes) {
_tokenRegexes.add(string);
}
}
public String getName() {
return _name;
}
public Set getTokenRegexes() {
return Collections.unmodifiableSet(_tokenRegexes);
}
public Set getTokenRegexPatterns() {
if (_tokenRegexPatterns == null) {
_tokenRegexPatterns = new LinkedHashSet();
for (String tokenRegex : _tokenRegexes) {
Pattern pattern = Pattern.compile(tokenRegex);
_tokenRegexPatterns.add(pattern);
}
}
return _tokenRegexPatterns;
}
@Override
public int hashCode() {
final int prime = 31;
int result = 1;
result = prime * result + ((_name == null) ? 0 : _name.hashCode());
return result;
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (getClass() != obj.getClass())
return false;
PredefinedTokenDefinition other = (PredefinedTokenDefinition) obj;
if (_name == null) {
if (other._name != null)
return false;
} else if (!_name.equals(other._name))
return false;
return true;
}
@Override
public String toString() {
return "PredefinedToken[name=" + _name + "]";
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy