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

com.jidesoft.swing.StringConverter Maven / Gradle / Ivy

There is a newer version: 3.6.18
Show newest version
/*
 * @(#)StringConverter.java 3/28/2005
 *
 * Copyright 2002 - 2005 JIDE Software Inc. All rights reserved.
 */

package com.jidesoft.swing;

/**
 * An interface to convert a string to anther one.
 */
public interface StringConverter {
    /**
     * Convert a string to another string, for example, to make it shorter.
     *
     * @param str string to be converted
     * @return string after conversion
     */
    String convert(String str);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy