Uses of Class
com.google.common.jimfs.AttributeProvider
-
-
Uses of AttributeProvider in com.google.common.jimfs
Subclasses of AttributeProvider in com.google.common.jimfs Modifier and Type Class Description (package private) classAclAttributeProviderAttribute provider that provides theAclFileAttributeView("acl").(package private) classBasicAttributeProviderAttribute provider that provides attributes common to all file systems, theBasicFileAttributeView("basic" or no view prefix), and allows the reading ofBasicFileAttributes.(package private) classDosAttributeProviderAttribute provider that provides theDosFileAttributeView("dos") and allows the reading ofDosFileAttributes.(package private) classOwnerAttributeProviderAttribute provider that provides theFileOwnerAttributeView("owner").(package private) classPosixAttributeProviderAttribute provider that provides thePosixFileAttributeView("posix") and allows reading ofPosixFileAttributes.(package private) classUnixAttributeProviderAttribute provider that provides the "unix" attribute view.(package private) classUserDefinedAttributeProviderAttribute provider that provides theUserDefinedFileAttributeView("user").Fields in com.google.common.jimfs with type parameters of type AttributeProvider Modifier and Type Field Description (package private) com.google.common.collect.ImmutableSet<AttributeProvider>Configuration. attributeProvidersprivate java.util.Set<AttributeProvider>Configuration.Builder. attributeProvidersprivate static com.google.common.collect.ImmutableMap<java.lang.String,AttributeProvider>StandardAttributeProviders. PROVIDERSprivate com.google.common.collect.ImmutableMap<java.lang.Class<?>,AttributeProvider>AttributeService. providersByAttributesTypeprivate com.google.common.collect.ImmutableMap<java.lang.String,AttributeProvider>AttributeService. providersByNameprivate com.google.common.collect.ImmutableMap<java.lang.Class<?>,AttributeProvider>AttributeService. providersByViewTypeMethods in com.google.common.jimfs that return AttributeProvider Modifier and Type Method Description static @Nullable AttributeProviderStandardAttributeProviders. get(java.lang.String view)Returns the attribute provider for the given view, ornullif the given view is not one of the attribute views this supports.Methods in com.google.common.jimfs that return types with arguments of type AttributeProvider Modifier and Type Method Description private static java.lang.Iterable<AttributeProvider>AttributeService. getProviders(Configuration configuration)Methods in com.google.common.jimfs with parameters of type AttributeProvider Modifier and Type Method Description Configuration.BuilderConfiguration.Builder. addAttributeProvider(AttributeProvider provider)Adds an attribute provider for a custom view for the file system to support.private com.google.common.collect.ImmutableMap<java.lang.String,java.nio.file.attribute.FileAttributeView>AttributeService. createInheritedViews(FileLookup lookup, AttributeProvider provider)private voidAttributeService. createInheritedViews(FileLookup lookup, AttributeProvider provider, java.util.Map<java.lang.String,java.nio.file.attribute.FileAttributeView> inheritedViews)private static voidAttributeService. readAll(File file, AttributeProvider provider, java.util.Map<java.lang.String,java.lang.Object> map)Method parameters in com.google.common.jimfs with type arguments of type AttributeProvider Modifier and Type Method Description private static voidAttributeService. addMissingProviders(java.util.Map<java.lang.String,AttributeProvider> providers)private static voidAttributeService. addStandardProvider(java.util.Map<java.lang.String,AttributeProvider> result, java.lang.String view)Constructor parameters in com.google.common.jimfs with type arguments of type AttributeProvider Constructor Description AttributeService(java.lang.Iterable<? extends AttributeProvider> providers, java.util.Map<java.lang.String,?> userProvidedDefaults)Creates a new attribute service using the given providers and user provided default attribute values.
-