summaryrefslogtreecommitdiffstats
path: root/config-provisioning/src/main/java/com/yahoo/config/provision/InstanceName.java
blob: 29e3fdb71eb1e4c5dc38be0aa3d0c158cc2186f1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
// Copyright 2016 Yahoo Inc. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.config.provision;

import java.util.Objects;

/**
 * Represents an applications instance name, which may be any kind of string or default. This type is defined
 * in order to provide a type safe API for defining environments.
 *
 * @author lulf
 * @since 5.25
 */
public class InstanceName implements Comparable<InstanceName> {

    private final String instanceName;

    private InstanceName(String instanceName) {
        this.instanceName = instanceName;
    }

    @Override
    public int hashCode() {
        return instanceName.hashCode();
    }

    @Override
    public boolean equals(Object obj) {
        if (!(obj instanceof InstanceName)) return false;
        return Objects.equals(((InstanceName) obj).instanceName, instanceName);
    }

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

    public static InstanceName from(String name) {
        return new InstanceName(name);
    }

    public static InstanceName defaultName() {
        return new InstanceName("default");
    }

    public boolean isDefault() {
        return equals(InstanceName.defaultName());
    }

    public String value() { return instanceName; }

    @Override
    public int compareTo(InstanceName instance) {
        return instanceName.compareTo(instance.instanceName);
    }

}