Sort members
diff --git a/src/main/java/org/apache/commons/lang3/arch/Processor.java b/src/main/java/org/apache/commons/lang3/arch/Processor.java
index 8466944..675e1b3 100644
--- a/src/main/java/org/apache/commons/lang3/arch/Processor.java
+++ b/src/main/java/org/apache/commons/lang3/arch/Processor.java
@@ -225,15 +225,6 @@ public boolean isPPC() {
}
/**
- * Tests if {@link Processor} is type of x86.
- *
- * @return {@code true}, if {@link Processor} is {@link Type#X86}, else {@code false}.
- */
- public boolean isX86() {
- return Type.X86 == type;
- }
-
- /**
* Tests if {@link Processor} is type of RISC-V.
*
* @return {@code true}. if {@link Processor} is {@link Type#RISC_V}, else {@code false}.
@@ -243,6 +234,15 @@ public boolean isRISCV() {
return Type.RISC_V == type;
}
+ /**
+ * Tests if {@link Processor} is type of x86.
+ *
+ * @return {@code true}, if {@link Processor} is {@link Type#X86}, else {@code false}.
+ */
+ public boolean isX86() {
+ return Type.X86 == type;
+ }
+
@Override
public String toString() {
final StringBuilder builder = new StringBuilder();