Uses of Class
org.apache.commons.lang3.arch.Processor
-
Packages that use Processor Package Description org.apache.commons.lang3 Provides highly reusable static utility methods, chiefly concerned with adding value to thejava.lang
classes. -
-
Uses of Processor in org.apache.commons.lang3
Fields in org.apache.commons.lang3 with type parameters of type Processor Modifier and Type Field Description private static java.util.Map<java.lang.String,Processor>
ArchUtils. ARCH_TO_PROCESSOR
Methods in org.apache.commons.lang3 that return Processor Modifier and Type Method Description static Processor
ArchUtils. getProcessor()
Returns aProcessor
object of the current JVM.static Processor
ArchUtils. getProcessor(java.lang.String value)
Returns aProcessor
object the given valueString
.Methods in org.apache.commons.lang3 with parameters of type Processor Modifier and Type Method Description private static void
ArchUtils. addProcessor(java.lang.String key, Processor processor)
Adds the givenProcessor
with the given keyString
to the map.private static void
ArchUtils. addProcessors(Processor processor, java.lang.String... keys)
Adds the givenProcessor
with the given keys to the map.
-