Sort members
This commit is contained in:
parent
9ca1652a68
commit
347f44a03e
|
@ -224,15 +224,6 @@ public class Processor {
|
||||||
return Type.PPC == type;
|
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.
|
* Tests if {@link Processor} is type of RISC-V.
|
||||||
*
|
*
|
||||||
|
@ -243,6 +234,15 @@ public class Processor {
|
||||||
return Type.RISC_V == type;
|
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
|
@Override
|
||||||
public String toString() {
|
public String toString() {
|
||||||
final StringBuilder builder = new StringBuilder();
|
final StringBuilder builder = new StringBuilder();
|
||||||
|
|
Loading…
Reference in New Issue