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

com.yahoo.vespa.flags.FlagId Maven / Gradle / Ivy

There is a newer version: 8.441.21
Show newest version
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.vespa.flags;

import java.util.Objects;
import java.util.regex.Pattern;

/**
 * @author hakonhall
 */
public class FlagId implements Comparable {
    private static final Pattern ID_PATTERN = Pattern.compile("^[a-zA-Z0-9][a-zA-Z0-9._-]*$");

    private final String id;

    public FlagId(String id) {
        if (!ID_PATTERN.matcher(id).find()) {
            throw new IllegalArgumentException("Not a valid FlagId: '" + id + "'");
        }

        this.id = id;
    }

    @Override
    public int compareTo(FlagId that) {
        return this.id.compareTo(that.id);
    }

    @Override
    public String toString() {
        return id;
    }

    @Override
    public boolean equals(Object o) {
        if (this == o) return true;
        if (o == null || getClass() != o.getClass()) return false;
        FlagId flagId = (FlagId) o;
        return Objects.equals(id, flagId.id);
    }

    @Override
    public int hashCode() {
        return Objects.hash(id);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy