Class LangUtil
java.lang.Object
org.aspectj.util.LangUtil
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic classHandle an external process asynchrously.static classcheck if input contains any packages to elide. -
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionSplitsinput, removing delimiter and trimming any white space.static <T> List<T> arrayAsList(T[] array) Replacement for Arrays.asList(..) which gacks on null and returns a List in which remove is an unsupported operation.commaSplit(String input) Splitsinputat commas, trimming any white space.static String[][]copyStrings(String[][] in) copy non-null two-dimensional String[][]static String[]extractOptions(String[] args, String[][] options) Extract options and arguments to input option list, returning remainder.static booleangetBoolean(String propertyName, boolean defaultValue) Get System property as boolean, but use default value where the system property is not set.static FileFind java executable File path from java.home system property.static Stringstatic Stringstatic doublestatic Stringstatic booleanisEmpty(byte[] ra) static booleanstatic booleanstatic booleanisEmpty(Collection<?> collection) static booleanstatic booleanisVMGreaterOrEqual(double javaVersion) static booleanisVMGreaterOrEqual(int javaVersion) static booleanisVMLessOrEqual(double javaVersion) static booleanisVMLessOrEqual(int javaVersion) static StringmakeClasspath(String bootclasspath, String classpath, String classesDir, String outputJar) Gen classpath.static LangUtil.ProcessControllermakeProcess(LangUtil.ProcessController controller, String classpath, String mainClass, String[] args) Create or initialize a process controller to run a process in another VM asynchronously.static StringRenders exceptiontafter unwrapping and eliding any test packages.static StringrenderException(Throwable t, boolean elide) Renders exceptiont, unwrapping, optionally eliding and limiting total number of lines.static Stringstatic Stringinefficient way to replace all instances of sought with replacestatic Object[]Convert arrays safely.static <T> List<T> static booleansleepUntil(long time) Sleep until a particular time.static String[]Splitstextat whitespace.static String[]splitClasspath(String classpath) Split string as classpath, delimited at File.pathSeparator.static StringBufferstackToString(Throwable throwable, boolean skipMessage) Dump message and stack to StringBuffer.Splits strings into aListusing aStringTokenizer.static final voidthrowIaxIfFalse(boolean test, String message) Shorthand for "if false, throw IllegalArgumentException"static final voidthrowIaxIfNotAssignable(Object[] ra, Class<?> c, String name) Shorthand for "if not null or not assignable, throw IllegalArgumentException"static final voidthrowIaxIfNotAssignable(Object o, Class<?> c, String name) Shorthand for "if not null or not assignable, throw IllegalArgumentException"static final voidthrowIaxIfNull(Object o, String name) Shorthand for "if null, throw IllegalArgumentException"static StringtoSizedString(long i, int width) render i right-justified with a given width less than about 40static StringunqualifiedClassName(Class<?> c) static Stringstatic Throwable
-
Field Details
-
EOL
-
JRT_FS
- See Also:
-
-
Constructor Details
-
LangUtil
public LangUtil()
-
-
Method Details
-
getVmVersionString
- Returns:
- the vm version (1.1, 1.2, 1.3, 1.4, etc)
-
getVmVersion
public static double getVmVersion() -
isVMGreaterOrEqual
public static boolean isVMGreaterOrEqual(int javaVersion) -
isVMGreaterOrEqual
public static boolean isVMGreaterOrEqual(double javaVersion) -
isVMLessOrEqual
public static boolean isVMLessOrEqual(int javaVersion) -
isVMLessOrEqual
public static boolean isVMLessOrEqual(double javaVersion) -
throwIaxIfNull
Shorthand for "if null, throw IllegalArgumentException"- Throws:
IllegalArgumentException- "null {name}" if o is null
-
throwIaxIfNotAssignable
Shorthand for "if not null or not assignable, throw IllegalArgumentException"- Parameters:
c- the Class to check - use null to ignore type check- Throws:
IllegalArgumentException- "null {name}" if o is null
-
throwIaxIfNotAssignable
Shorthand for "if not null or not assignable, throw IllegalArgumentException"- Throws:
IllegalArgumentException- "null {name}" if o is null
-
throwIaxIfFalse
Shorthand for "if false, throw IllegalArgumentException"- Throws:
IllegalArgumentException- "{message}" if test is false
-
isEmpty
- Returns:
- ((null == s) || (0 == s.length()));
-
isEmpty
- Returns:
- ((null == ra) || (0 == ra.length))
-
isEmpty
public static boolean isEmpty(byte[] ra) - Returns:
- ((null == ra) || (0 == ra.length))
-
isEmpty
- Returns:
- ((null == collection) || (0 == collection.size()))
-
isEmpty
- Returns:
- ((null == map) || (0 == map.size()))
-
split
-
commaSplit
-
splitClasspath
-
getBoolean
Get System property as boolean, but use default value where the system property is not set.- Returns:
- true if value is set to true, false otherwise
-
anySplit
Splitsinput, removing delimiter and trimming any white space. Returns an empty collection if the input is null. If delimiter is null or empty or if the input contains no delimiters, the input itself is returned after trimming white space.- Parameters:
input-Stringto split.delim-Stringseparators for input.- Returns:
- List of String of elements.
-
strings
-
safeList
-
copyStrings
-
extractOptions
Extract options and arguments to input option list, returning remainder. The input options will be nullified if not found. e.g.,String[] options = new String[][] { new String[] { "-verbose" }, new String[] { "-classpath", null } }; String[] args = extractOptions(args, options); boolean verbose = null != options[0][0]; boolean classpath = options[1][1];- Parameters:
args- the String[] input optionsoptions- the String[][]options to find in the input args - not null for each String[] component the first subcomponent is the option itself, and there is one String subcomponent for each additional argument.- Returns:
- String[] of args remaining after extracting options to extracted
-
safeCopy
Convert arrays safely. The number of elements in the result will be 1 smaller for each element that is null or not assignable. This will use sink if it has exactly the right size. The result will always have the same component type as sink.- Returns:
- an array with the same component type as sink containing any assignable elements in source (in the same order).
- Throws:
IllegalArgumentException- if either is null
-
unqualifiedClassName
-
unqualifiedClassName
-
replace
-
toSizedString
render i right-justified with a given width less than about 40 -
renderExceptionShort
-
renderException
-
renderException
-
stackToString
Dump message and stack to StringBuffer. -
unwrapException
-
arrayAsList
Replacement for Arrays.asList(..) which gacks on null and returns a List in which remove is an unsupported operation.- Parameters:
array- the Object[] to convert (may be null)- Returns:
- the List corresponding to array (never null)
-
makeClasspath
-
makeProcess
public static LangUtil.ProcessController makeProcess(LangUtil.ProcessController controller, String classpath, String mainClass, String[] args) Create or initialize a process controller to run a process in another VM asynchronously.- Parameters:
controller- the ProcessController to initialize, if not nullclasspath-mainClass-args-- Returns:
- initialized ProcessController
-
getJavaExecutable
Find java executable File path from java.home system property.- Returns:
- File associated with the java command, or null if not found.
-
sleepUntil
public static boolean sleepUntil(long time) Sleep until a particular time.- Parameters:
time- the long time in milliseconds to sleep until- Returns:
- true if delay succeeded, false if interrupted 100 times
-
getJrtFsFilePath
-
getJavaHome
-