io.github.dmlloyd.classfile.impl.AnnotationImpl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jdk-classfile-preview Show documentation
Show all versions of jdk-classfile-preview Show documentation
An unofficial backport of the JDK Classfile API to Java 17
/*
* Copyright (c) 2022, 2024, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation. Oracle designates this
* particular file as subject to the "Classpath" exception as provided
* by Oracle in the LICENSE file that accompanied this code.
*
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
* or visit www.oracle.com if you need additional information or have any
* questions.
*/
package io.github.dmlloyd.classfile.impl;
import io.github.dmlloyd.classfile.*;
import io.github.dmlloyd.classfile.constantpool.*;
import java.util.List;
import static io.github.dmlloyd.classfile.ClassFile.*;
public record AnnotationImpl(Utf8Entry className, List elements)
implements Annotation {
public AnnotationImpl {
elements = List.copyOf(elements);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder("Annotation[");
sb.append(className().stringValue());
List evps = elements();
if (!evps.isEmpty()) {
sb.append(' ').append(evps);
}
sb.append("]");
return sb.toString();
}
public record AnnotationElementImpl(Utf8Entry name,
AnnotationValue value)
implements AnnotationElement {
@Override
public String toString() {
return name + "=" + value;
}
}
public record OfStringImpl(Utf8Entry constant)
implements AnnotationValue.OfString {
@Override
public char tag() {
return AEV_STRING;
}
@Override
public String stringValue() {
return constant().stringValue();
}
}
public record OfDoubleImpl(DoubleEntry constant)
implements AnnotationValue.OfDouble {
@Override
public char tag() {
return AEV_DOUBLE;
}
@Override
public double doubleValue() {
return constant().doubleValue();
}
}
public record OfFloatImpl(FloatEntry constant)
implements AnnotationValue.OfFloat {
@Override
public char tag() {
return AEV_FLOAT;
}
@Override
public float floatValue() {
return constant().floatValue();
}
}
public record OfLongImpl(LongEntry constant)
implements AnnotationValue.OfLong {
@Override
public char tag() {
return AEV_LONG;
}
@Override
public long longValue() {
return constant().longValue();
}
}
public record OfIntImpl(IntegerEntry constant)
implements AnnotationValue.OfInt {
@Override
public char tag() {
return AEV_INT;
}
@Override
public int intValue() {
return constant().intValue();
}
}
public record OfShortImpl(IntegerEntry constant)
implements AnnotationValue.OfShort {
@Override
public char tag() {
return AEV_SHORT;
}
@Override
public short shortValue() {
return (short)constant().intValue();
}
}
public record OfCharImpl(IntegerEntry constant)
implements AnnotationValue.OfChar {
@Override
public char tag() {
return AEV_CHAR;
}
@Override
public char charValue() {
return (char)constant().intValue();
}
}
public record OfByteImpl(IntegerEntry constant)
implements AnnotationValue.OfByte {
@Override
public char tag() {
return AEV_BYTE;
}
@Override
public byte byteValue() {
return (byte)constant().intValue();
}
}
public record OfBooleanImpl(IntegerEntry constant)
implements AnnotationValue.OfBoolean {
@Override
public char tag() {
return AEV_BOOLEAN;
}
@Override
public boolean booleanValue() {
return constant().intValue() != 0;
}
}
public record OfArrayImpl(List values)
implements AnnotationValue.OfArray {
public OfArrayImpl {
values = List.copyOf(values);
}
@Override
public char tag() {
return AEV_ARRAY;
}
}
public record OfEnumImpl(Utf8Entry className, Utf8Entry constantName)
implements AnnotationValue.OfEnum {
@Override
public char tag() {
return AEV_ENUM;
}
}
public record OfAnnotationImpl(Annotation annotation)
implements AnnotationValue.OfAnnotation {
@Override
public char tag() {
return AEV_ANNOTATION;
}
}
public record OfClassImpl(Utf8Entry className)
implements AnnotationValue.OfClass {
@Override
public char tag() {
return AEV_CLASS;
}
}
}