# Apache Commons Lang

Apache Commons Lang is a widely-used Java library that provides various utility functions for working with basic Java objects, including strings, arrays, numbers, and more.

### **Maven Dependency**

```xml
<dependency>
    <groupId>org.apache.commons</groupId>
    <artifactId>commons-lang3</artifactId>
    <version>3.12.0</version>
</dependency>
```

### **Categories**

**Splitting of various utility methods across different categories.**

* **StringUtils Class**

```java
import org.apache.commons.lang3.StringUtils;
```

**Methods**

```java
abbreviate(String str, int maxWidth)
```

It is used to abbreviate or shorten a string to a specified length while appending an ellipsis ("...") to indicate that the string has been shortened.

* **ArrayUtils Class**

```java
import org.apache.commons.lang3.ArrayUtils
```

* **NumberUtils Class**

```java
import org.apache.commons.lang3.math.NumberUtils;
```

* **SystemUtils Class**

```java
import org.apache.commons.lang3.SystemUtils;
```

* **RandomStringUtils Class**

```java
import org.apache.commons.lang3.RandomStringUtils;
```

* **DateUtils Class**

```java
import org.apache.commons.lang3.time.DateUtils;
```

* **EqualsBuilder**

```java
import org.apache.commons.lang3.builder.EqualsBuilder;
```

* **HashCodeBuilder Class**

```java
import org.apache.commons.lang3.builder.HashCodeBuilder;
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://www.pranaypourkar.co.in/the-programmers-guide/spring/utilities-and-libraries/apache-libraries/apache-commons-lang.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
