mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2024-12-25 16:42:30 -06:00
54 lines
1.3 KiB
Java
54 lines
1.3 KiB
Java
package com.google.gson;
|
|
|
|
import com.google.gson.internal.C$Gson$Preconditions;
|
|
import java.lang.annotation.Annotation;
|
|
import java.lang.reflect.Field;
|
|
import java.lang.reflect.Type;
|
|
import java.util.Arrays;
|
|
import java.util.Collection;
|
|
|
|
/* loaded from: classes3.dex */
|
|
public final class FieldAttributes {
|
|
private final Field field;
|
|
|
|
public FieldAttributes(Field field) {
|
|
C$Gson$Preconditions.checkNotNull(field);
|
|
this.field = field;
|
|
}
|
|
|
|
public Class<?> getDeclaringClass() {
|
|
return this.field.getDeclaringClass();
|
|
}
|
|
|
|
public String getName() {
|
|
return this.field.getName();
|
|
}
|
|
|
|
public Type getDeclaredType() {
|
|
return this.field.getGenericType();
|
|
}
|
|
|
|
public Class<?> getDeclaredClass() {
|
|
return this.field.getType();
|
|
}
|
|
|
|
public <T extends Annotation> T getAnnotation(Class<T> cls) {
|
|
return (T) this.field.getAnnotation(cls);
|
|
}
|
|
|
|
public Collection<Annotation> getAnnotations() {
|
|
return Arrays.asList(this.field.getAnnotations());
|
|
}
|
|
|
|
public boolean hasModifier(int i) {
|
|
return (this.field.getModifiers() & i) != 0;
|
|
}
|
|
|
|
Object get(Object obj) throws IllegalAccessException {
|
|
return this.field.get(obj);
|
|
}
|
|
|
|
boolean isSynthetic() {
|
|
return this.field.isSynthetic();
|
|
}
|
|
}
|