-
Notifications
You must be signed in to change notification settings - Fork 683
/
Copy pathAlias.java
165 lines (138 loc) · 4.35 KB
/
Alias.java
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
/*
* Copyright 2016-2025 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.springframework.data.mapping;
import java.util.Objects;
import org.springframework.lang.Nullable;
import org.springframework.util.Assert;
/**
* A container object which may or may not contain a type alias value. If a value is present, {@code isPresent()} will
* return {@code true} and {@link #getValue()} will return the value.
* <p>
* Additional methods that depend on the presence or absence of a contained value are provided, such as
* {@link #hasValue(Object)} or {@link #isPresent()}
* <p>
* Aliases are immutable once created.
*
* @author Oliver Gierke
* @author Christoph Strobl
* @author Mark Paluch
*/
public final class Alias {
/**
* Common instance for {@code empty()}.
*/
@SuppressWarnings("null") //
public static final Alias NONE = new Alias(null);
private final Object value;
private Alias(Object value) {
this.value = value;
}
/**
* Create an {@link Alias} given the {@code alias} object.
*
* @param alias must not be {@literal null}.
* @return the {@link Alias} for {@code alias}.
*/
public static Alias of(Object alias) {
Assert.notNull(alias, "Alias must not be null");
return new Alias(alias);
}
/**
* Create an {@link Alias} from a possibly present {@code alias} object. Using a {@literal null} alias will return
* {@link #empty()}.
*
* @param alias may be {@literal null}.
* @return the {@link Alias} for {@code alias} or {@link #empty()} if the given alias was {@literal null}.
*/
public static Alias ofNullable(@Nullable Object alias) {
return alias == null ? NONE : new Alias(alias);
}
/**
* Returns an empty {@code Alias} instance. No value is present for this Alias.
*
* @return an empty {@link Alias}.
*/
public static Alias empty() {
return NONE;
}
/**
* Checks whether this {@link Alias} has a value but is different from the {@code other} value.
*
* @param other must not be {@literal null}.
* @return {@literal true} if this value is present but different from the {@code other} value.
*/
public boolean isPresentButDifferent(Alias other) {
Assert.notNull(other, "Other alias must not be null");
return isPresent() && !this.value.equals(other.value);
}
/**
* Checks whether this {@link Alias} contains the value {@code that}.
*
* @param that the other value, may be {@literal null}.
* @return {@literal true} if this alias has a value and it equals to {@code that}.
*/
public boolean hasValue(Object that) {
return value != null && value.equals(that);
}
/**
* Returns whether the current alias is present and has the same value as the given {@link Alias}.
*
* @param other the other {@link Alias}
* @return {@literal true} if there's an alias value present and its equal to the one in the given {@link Alias}.
*/
public boolean hasSamePresentValueAs(Alias other) {
return isPresent() && value.equals(other.value);
}
/**
* @return {@literal true} if this {@link Alias} contains a value.
*/
public boolean isPresent() {
return value != null;
}
/**
* Return the value typed to {@code type} if the value is present and assignable to {@code type}.
*
* @param type must not be {@literal null}.
* @return
*/
@Nullable
@SuppressWarnings("unchecked")
public <T> T mapTyped(Class<T> type) {
Assert.notNull(type, "Type must not be null");
return isPresent() && type.isInstance(value) ? (T) value : null;
}
@Override
public String toString() {
return isPresent() ? value.toString() : "NONE";
}
public Object getValue() {
return this.value;
}
@Override
public boolean equals(@Nullable Object o) {
if (this == o) {
return true;
}
if (!(o instanceof Alias that)) {
return false;
}
return Objects.equals(this.value, that.value);
}
@Override
public int hashCode() {
return Objects.hashCode(value);
}
}