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

org.jpmml.model.visitors.StringInterner Maven / Gradle / Ivy

There is a newer version: 1.6.6
Show newest version
/*
 * Copyright (c) 2015 Villu Ruusmann
 */
package org.jpmml.model.visitors;


/**
 * 

* A Visitor that interns {@link String} attribute values. *

* *

* Strings are interned using the standard {@link String#intern()} method. *

*/ public class StringInterner extends Interner { public StringInterner(){ super(String.class); } @Override public String intern(String string){ return string.intern(); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy