Uses of Class
io.airlift.bytecode.Access
-
Packages that use Access Package Description io.airlift.bytecode -
-
Uses of Access in io.airlift.bytecode
Methods in io.airlift.bytecode that return Access Modifier and Type Method Description static AccessAccess. valueOf(String name)Returns the enum constant of this type with the specified name.static Access[]Access. values()Returns an array containing the constants of this enum type, in the order they are declared.Methods in io.airlift.bytecode that return types with arguments of type Access Modifier and Type Method Description static EnumSet<Access>Access. a(Access... access)Set<Access>ClassDefinition. getAccess()com.google.common.collect.ImmutableSet<Access>FieldDefinition. getAccess()EnumSet<Access>MethodDefinition. getAccess()Methods in io.airlift.bytecode with parameters of type Access Modifier and Type Method Description static EnumSet<Access>Access. a(Access... access)Constructor parameters in io.airlift.bytecode with type arguments of type Access Constructor Description ClassDefinition(EnumSet<Access> access, ParameterizedType type, ParameterizedType superClass, ParameterizedType... interfaces)ClassDefinition(EnumSet<Access> access, String name, ParameterizedType superClass, ParameterizedType... interfaces)FieldDefinition(ClassDefinition declaringClass, EnumSet<Access> access, String name, ParameterizedType type)FieldDefinition(ClassDefinition declaringClass, EnumSet<Access> access, String name, Class<?> type)MethodDefinition(ClassDefinition declaringClass, EnumSet<Access> access, String name, ParameterizedType returnType, Parameter... parameters)MethodDefinition(ClassDefinition declaringClass, EnumSet<Access> access, String name, ParameterizedType returnType, Iterable<Parameter> parameters)
-