Home / Function/ cleanArgument() — spring-boot Function Reference

cleanArgument() — spring-boot Function Reference

Architecture documentation for the cleanArgument() function in EscapeAwareWhiteSpaceArgumentDelimiter.java from the spring-boot codebase.

Function java GradlePlugin AotProcessing calls 1 called by 1

Entity Profile

Dependency Diagram

graph TD
  2d712e40_d690_46ca_8d16_10098275595f["cleanArgument()"]
  65a7e043_5f78_91db_505f_f830d7b11c57["cleanArguments()"]
  65a7e043_5f78_91db_505f_f830d7b11c57 -->|calls| 2d712e40_d690_46ca_8d16_10098275595f
  08d7b6ea_6ede_6fe2_3cce_88b23cc4d345["replaceEscapes()"]
  2d712e40_d690_46ca_8d16_10098275595f -->|calls| 08d7b6ea_6ede_6fe2_3cce_88b23cc4d345
  style 2d712e40_d690_46ca_8d16_10098275595f fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

cli/spring-boot-cli/src/main/java/org/springframework/boot/cli/command/shell/EscapeAwareWhiteSpaceArgumentDelimiter.java lines 83–91

	private String cleanArgument(String argument) {
		for (char c : getQuoteChars()) {
			String quote = String.valueOf(c);
			if (argument.startsWith(quote) && argument.endsWith(quote)) {
				return replaceEscapes(argument.substring(1, argument.length() - 1));
			}
		}
		return replaceEscapes(argument);
	}

Domain

Subdomains

Calls

  • replaceEscapes()

Called By

Frequently Asked Questions

What does cleanArgument() do?
cleanArgument() is a function in the spring-boot codebase.
What does cleanArgument() call?
cleanArgument() calls 1 function(s): replaceEscapes.
What calls cleanArgument()?
cleanArgument() is called by 1 function(s): cleanArguments.

Analyze Your Own Codebase

Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.

Try Supermodel Free