All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.sf.aguacate.regex.RegexCouplig Maven / Gradle / Ivy

There is a newer version: 0.10.9
Show newest version
package net.sf.aguacate.regex;

import net.sf.aguacate.regex.spi.RegexFactory;
import net.sf.aguacate.regex.spi.pattern.RegexFactoryPattern;

public final class RegexCouplig {

	private static final RegexFactory FACTORY;

	static {
		FACTORY = new RegexFactoryPattern();
	}

	private RegexCouplig() {
	}

	public static Regex build(String regex) {
		return FACTORY.build(regex);
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy