Class IdBuilder<P>
- Object
-
- IdBuilder<P>
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Id
build()
Build the expression.P
end()
IdBuilder<P>
featureId(String fid)
IdBuilder<P>
fid(String fid)
IdBuilder<P>
fid(List<String> fids)
IdBuilder<P>
reset()
Configure the Builder to produce a default result.IdBuilder<P>
reset(Id filter)
Configure the Builder to produce a copy of the provided original.IdBuilder<P>
unset()
Configure the Builder to producenull
.
-
-
-
Field Detail
-
filter
protected Filter filter
-
ff
protected FilterFactory ff
-
parent
protected P parent
-
unset
protected boolean unset
-
-
Constructor Detail
-
IdBuilder
public IdBuilder()
-
IdBuilder
public IdBuilder(P parent)
-
-
Method Detail
-
build
public Id build()
Build the expression.
-
end
public P end()
-
reset
public IdBuilder<P> reset()
Description copied from interface:Builder
Configure the Builder to produce a default result.
-
reset
public IdBuilder<P> reset(Id filter)
Description copied from interface:Builder
Configure the Builder to produce a copy of the provided original.
-
unset
public IdBuilder<P> unset()
Description copied from interface:Builder
Configure the Builder to producenull
.This method allows a Builder to be used as a placeholder; in its unset state the build() method will produce
null
. If any of the builder methods are used the builder will produce a result.
-
-