DartdocOptionFileOnly<T> class
Constructors
-
DartdocOptionFileOnly(String name, T defaultsTo, ResourceProvider resourceProvider, {bool mustExist = false, String help = '', OptionKind optionIs = OptionKind.other, bool parentDirOverridesChild = false, ConvertYamlToType<T> convertYamlToType})
-
Properties
-
argParser
→ ArgParser
-
read-only, inherited
-
defaultsTo
→ T
-
This is the value returned if we couldn't find one otherwise.
final, inherited
-
fieldName
→ String
-
The name of the option, with nested options joined by
.
. For example: [...]
read-only, inherited
-
hashCode
→ int
-
The hash code for this object. [...]
read-only, inherited
-
help
→ String
-
Text string for help passed on in command line options.
final, inherited
-
isDir
→ bool
-
Set to true if this option represents the name of a directory.
read-only, inherited
-
isFile
→ bool
-
Set to true if this option represents the name of a file.
read-only, inherited
-
isGlob
→ bool
-
Set to true if this option represents a glob.
read-only, inherited
-
keys
→ Iterable<String>
-
All object names starting at the root.
read-only, inherited
-
mustExist
→ bool
-
Set to true if DartdocOption subclasses should validate that the
directory or file exists. Does not imply validation of defaultsTo,
and requires that one of isDir or isFile is set.
final, inherited
-
name
→ String
-
The name of this option, not including the names of any parents.
final, inherited
-
optionIs
→ OptionKind
-
final, inherited
-
parent
↔ DartdocOption<Object>
-
The parent of this DartdocOption, or null if this is the root.
read / write, inherited
-
parentDirOverridesChild
→ bool
-
If true, the parent directory's value overrides the child's. [...]
read-only
-
resourceProvider
→ ResourceProvider
-
final, inherited
-
root
→ DartdocOption<Object>
-
The root DartdocOption containing this object, or this if the object
has no parent.
read-only, inherited
-
runtimeType
→ Type
-
A representation of the runtime type of the object.
read-only, inherited
Methods
-
add(DartdocOption<Object> option)
→ void
-
Adds a DartdocOption to the children of this DartdocOption.
inherited
-
addAll(Iterable<DartdocOption<Object>> options)
→ void
-
Adds a list of dartdoc options to the children of this DartdocOption.
inherited
-
noSuchMethod(Invocation invocation)
→ dynamic
-
Invoked when a non-existent method or property is accessed. [...]
inherited
-
parseArguments(List<String> arguments)
→ void
-
Call this with argv to set up the argument overrides. Applies to all
children.
inherited
-
toString()
→ String
-
Returns a string representation of this object.
inherited
-
traverse(void visit(DartdocOption<Object> option))
→ void
-
Apply the function
visit
to this and all children.
inherited
-
valueAt(Folder dir)
→ T
-
Searches for a value in configuration files relative to
dir
, and if not
found, returns defaultsTo.
inherited
-
valueAtCurrent()
→ T
-
Calls valueAt with the working directory at the start of the program.
inherited
-
valueAtElement(Element element)
→ T
-
Calls valueAt on the directory this element is defined in.
inherited