Uses of Class
io.microsphere.lang.MutableInteger
-
Packages that use MutableInteger Package Description io.microsphere.beans io.microsphere.lang -
-
Uses of MutableInteger in io.microsphere.beans
Methods in io.microsphere.beans with parameters of type MutableInteger Modifier and Type Method Description protected static java.util.Map<java.lang.String,java.lang.Object>
BeanUtils. resolvePropertiesAsMap(java.lang.Object bean, MutableInteger resolvedDepth, int maxResolvedDepth)
Resolves the properties of a given Java Bean recursively up to a specified maximum depth, tracking the current depth with aMutableInteger
, and returns them as aMap
. -
Uses of MutableInteger in io.microsphere.lang
Methods in io.microsphere.lang that return MutableInteger Modifier and Type Method Description static MutableInteger
MutableInteger. of(int value)
Creates a new instance ofMutableInteger
initialized with the given value.MutableInteger
MutableInteger. set(int newValue)
Sets the value to the given newValue and returns this instance.
-