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

lphystudio.app.graphicalmodelpanel.viewer.StringArrayLabel Maven / Gradle / Ivy

The newest version!
package lphystudio.app.graphicalmodelpanel.viewer;

import lphy.core.model.Value;

import static lphy.core.model.datatype.StringArrayValue.quotedString;

public class StringArrayLabel extends ArrayLabel {

    public StringArrayLabel(Value values) {
        super(values);
    }

    public StringArrayLabel(String[] values) {
        super(values);
    }

    @Override
    public String valueToString(String rawValue) {
        return quotedString(rawValue);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy