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

io.soffa.foundation.commons.Regex Maven / Gradle / Ivy

There is a newer version: 2.0.2
Show newest version
package io.soffa.foundation.commons;

import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonValue;
import lombok.Value;

@Value
public class Regex {

    @JsonValue
    String value;

    @JsonCreator
    public Regex(String value) {
        this.value = value;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy