public class FilenameWhitelist extends FilenameBlackWhiteList
For white-listing file paths or fully-qualified class names.
aliteralmind __DASH__ github __AT__ yahoo __DOT__ com), dual-licensed under the LGPL (version 3.0 or later) or the ASL (version 2.0). See source code for details. http://codelet.aliteralmind.com, https://github.com/aliteralmind/codelet| Constructor and Description |
|---|
FilenameWhitelist(FilenameBlackWhiteList to_copyListsFrom,
IOCase case_sensitivity,
Appendable dbgAccept_ifNonNull)
Create a new instance from an existing white or black-list.
|
FilenameWhitelist(IOCase case_sensitivity,
String[] proper_items,
String[] override_items,
Appendable dbgAccept_ifNonNull)
Create a new instance.
|
appendToString, areFieldsEqual, doAccept, equals, getCaseSensitivity, getImmutableOverrideList, getImmutableProperList, isMatchedByOverride, isMatchedByProper, isWhitelist, newForAcceptAll, newFromConfigStringVars, newFromProperties, toStringpublic FilenameWhitelist(IOCase case_sensitivity, String[] proper_items, String[] override_items, Appendable dbgAccept_ifNonNull)
Create a new instance.
Equal to
super(BlackOrWhite.WHITE, case_sensitivity, proper_items, override_items, dbgAccept_ifNonNull)
public FilenameWhitelist(FilenameBlackWhiteList to_copyListsFrom, IOCase case_sensitivity, Appendable dbgAccept_ifNonNull)
Create a new instance from an existing white or black-list.
Equal to
super(to_copyListsFrom, BlackOrWhite.WHITE, case_sensitivity, dbgAccept_ifNonNull)
Copyright 2014, Jeff Epstein, All Rights Reserved. See top of source code files for copyright notice.
https://github.com/aliteralmind/codelet