org.jetbrains.kotlin.name.Name Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kotlin-compiler-embeddable Show documentation
Show all versions of kotlin-compiler-embeddable Show documentation
the Kotlin compiler embeddable
/*
* Copyright 2010-2015 JetBrains s.r.o.
*
* 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
*
* http://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.jetbrains.kotlin.name;
import org.jetbrains.annotations.NotNull;
public final class Name implements Comparable {
@NotNull
private final String name;
private final boolean special;
private Name(@NotNull String name, boolean special) {
this.name = name;
this.special = special;
}
@NotNull
public String asString() {
return name;
}
@NotNull
public String getIdentifier() {
if (special) {
throw new IllegalStateException("not identifier: " + this);
}
return asString();
}
public boolean isSpecial() {
return special;
}
@Override
public int compareTo(Name that) {
return this.name.compareTo(that.name);
}
@NotNull
public static Name identifier(@NotNull String name) {
return new Name(name, false);
}
public static boolean isValidIdentifier(@NotNull String name) {
return !name.isEmpty() && !name.startsWith("<") && !name.contains(".") && !name.contains("/");
}
@NotNull
public static Name special(@NotNull String name) {
if (!name.startsWith("<")) {
throw new IllegalArgumentException("special name must start with '<': " + name);
}
return new Name(name, true);
}
@NotNull
public static Name guessByFirstCharacter(@NotNull String name) {
if (name.startsWith("<")) {
return special(name);
}
else {
return identifier(name);
}
}
@Override
public String toString() {
return name;
}
@Override
public boolean equals(Object o) {
if (this == o) return true;
if (!(o instanceof Name)) return false;
Name name1 = (Name) o;
if (special != name1.special) return false;
if (!name.equals(name1.name)) return false;
return true;
}
@Override
public int hashCode() {
int result = name.hashCode();
result = 31 * result + (special ? 1 : 0);
return result;
}
}