If you are using the included XML noise configuration system, Clamp modules can be declared as
<clamp lower="bound" upper="bound"> <source module /> </clamp>
45464748495051
throw new BuilderException ("Clamp requires upper bound."); if (lower > upper) throw new BuilderException ( "Clamp requires lower bound less than or equal to upper bound."); return new Clamp (getSource ().createModule (), lower, upper); }