net.nemerosa.ontrack.model.form.Text Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ontrack-model Show documentation
Show all versions of ontrack-model Show documentation
Ontrack module: ontrack-model
package net.nemerosa.ontrack.model.form;
import lombok.Data;
import lombok.EqualsAndHashCode;
@EqualsAndHashCode(callSuper = false)
@Data
public class Text extends AbstractText {
private String regex = ".*";
protected Text(String name) {
super("text", name);
}
public static Text of(String name) {
return new Text(name);
}
public Text regex(String value) {
this.regex = value;
return this;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy