Sort members

This commit is contained in:
Gary Gregory 2023-11-18 09:32:29 -05:00
parent 9ca1652a68
commit 347f44a03e
1 changed files with 9 additions and 9 deletions

View File

@ -224,15 +224,6 @@ public class Processor {
return Type.PPC == 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;
}
/**
* Tests if {@link Processor} is type of RISC-V.
*
@ -243,6 +234,15 @@ public class Processor {
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();