Package | Description |
---|---|
net.java.truecommons.cio |
Provides generic services for reading and writing
entries in
containers,
e.g. file systems, archive files or I/O buffer pools.
|
net.java.truecommons.shed |
Hosts small but useful tools and utilities that didn't fit anywhere else.
|
Modifier and Type | Field and Description |
---|---|
static BitField<Entry.Access> |
Entry.ALL_ACCESS
A bit field of all enums in
Entry.Access . |
static BitField<Entry.Access> |
Entry.ALL_POSIX_ACCESS
|
static BitField<Entry.PosixEntity> |
Entry.ALL_POSIX_ENTITIES
A bit field of all enums in
Entry.PosixEntity . |
static BitField<Entry.Size> |
Entry.ALL_SIZES
A bit field of all enums in
Entry.Size . |
static BitField<Entry.Type> |
Entry.ALL_TYPES
A bit field of all enums in
Entry.Type . |
static BitField<Entry.Type> |
Entry.DIRECTORY_TYPE
A bit field of just
Entry.Type.DIRECTORY . |
static BitField<Entry.Type> |
Entry.FILE_TYPE
A bit field of just
Entry.Type.FILE . |
static BitField<Entry.Access> |
Entry.NO_ACCESS
A bit field of no enums in
Entry.Access . |
static BitField<Entry.PosixEntity> |
Entry.NO_POSIX_ENTITIES
A bit field of no enums in
Entry.PosixEntity . |
static BitField<Entry.Size> |
Entry.NO_SIZES
A bit field of no enums in
Entry.Size . |
static BitField<Entry.Type> |
Entry.NO_TYPES
A bit field of no enums in
Entry.Type . |
static BitField<Entry.Type> |
Entry.SPECIAL_TYPE
A bit field of just
Entry.Type.SPECIAL . |
static BitField<Entry.Type> |
Entry.SYMLINK_TYPE
A bit field of just
Entry.Type.SYMLINK . |
Modifier and Type | Method and Description |
---|---|
static <E extends Enum<E>> |
BitField.allOf(Class<E> elementType)
Returns a bit field which contains all enums of the given element type.
|
BitField<E> |
BitField.and(BitField<E> that) |
BitField<E> |
BitField.clear(E bit)
Clears the given bit.
|
static <E extends Enum<E>> |
BitField.copyOf(Collection<E> bits)
Returns a bit field which contains the same bits as the given collection
of enums.
|
static <E extends Enum<E>> |
BitField.noneOf(Class<E> elementType)
Returns a bit field which can contain the given element type and is
initially empty.
|
BitField<E> |
BitField.not() |
static <E extends Enum<E>> |
BitField.of(Class<E> elementType,
String list)
Deprecated.
Required for XMLEncoder/XMLDecoder - do not use!
|
static <E extends Enum<E>> |
BitField.of(E bit)
Returns a bit field which contains the given bit.
|
static <E extends Enum<E>> |
BitField.of(E bit,
E... bits)
Returns a bit field which contains the given bits.
|
BitField<E> |
BitField.or(BitField<E> that) |
BitField<E> |
BitField.set(E bit)
Sets the given bit.
|
BitField<E> |
BitField.set(E bit,
boolean set)
Sets or clears the given bit.
|
Modifier and Type | Method and Description |
---|---|
BitField<E> |
BitField.and(BitField<E> that) |
BitField<E> |
BitField.or(BitField<E> that) |
Copyright © 2012–2014 Schlichtherle IT Services. All rights reserved.