master
Eline 2023-01-06 17:10:53 +01:00
parent dabe1dda0f
commit 16947dde83
6 changed files with 39 additions and 27 deletions

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -5,22 +5,23 @@ import java.util.Arrays;
import java.util.stream.Collectors;
public class C3PO implements Robot {
//declaring
private int id;
private String name;
private boolean isPowerOn;
//returns id
@Override
public int getId() {
return id;
}
//returns name
@Override
public String getName() {
return name;
}
//returns isPorwerOn true if it's false
@Override
public void triggerPowerSwitch() {
if(isPowerOn==false){
@ -31,16 +32,18 @@ public class C3PO implements Robot {
}
//tes test
//returns isPowerOn
@Override
public boolean isPowerOn() {
return isPowerOn;
}
//creating a RobotException
@Override
public RobotException getLastException() {
return null;
}
//speak method that returns the sorted and formated numbers from the array zahlen
@Override
public String speak(int[] zahlen) throws RobotException {
@ -49,6 +52,9 @@ public class C3PO implements Robot {
return arrayFormatieren(sortiert);
}
//method to format the result
//Returns a Stream consisting of the elements of this stream,each boxed to an Integer and maps it into a String
//each element of the Stream is separated by ;
private String arrayFormatieren(int[] zahlen){
var ergebnis = Arrays.stream(zahlen)
.boxed()
@ -56,6 +62,8 @@ public class C3PO implements Robot {
.collect(Collectors.joining(";"));
return ergebnis;
}
//method that sorts the array zahlen with the Selectionsort-Algorithmin in descending order
@Override
public int[] think(int[] zahlen) throws RobotException {
int n = zahlen.length;

View File

@ -6,50 +6,50 @@ import java.util.Arrays;
import java.util.stream.Collectors;
public class Nexus6 implements Robot {
//declaring and initializing
private int id = 19281982;
private String name = "pris";
private boolean isPowerOn = false;
//creating an instance of Nexus
private static Nexus6 instance = new Nexus6();
//constructor of Nexus
private Nexus6() {
}
//instance of Nexus is null
public static Nexus6 getInstance() {
if (instance == null)
instance = new Nexus6();
return instance;
}
//returns id
@Override
public int getId() {
return id;
}
//returns name
@Override
public String getName() {
return name;
}
//isPowerOn must be false
@Override
public void triggerPowerSwitch() {
if(isPowerOn==false){
isPowerOn=true;
isPowerOn=false;
}else{
isPowerOn=false;
}
}
//retruns isPowerOn
@Override
public boolean isPowerOn() {
return isPowerOn;
}
//creating a RobotException
@Override
public RobotException getLastException() {
return null;

View File

@ -5,22 +5,23 @@ import java.util.Arrays;
import java.util.stream.Collectors;
public class R2D2 implements Robot {
private int id;
//declaring
private int id;
private String name;
private boolean isPowerOn;
//returns id
@Override
public int getId() {
return id;
}
//returns name
@Override
public String getName() {
return name;
}
//returns isPorwerOn true if it's false
@Override
public void triggerPowerSwitch() {
if(isPowerOn==false){
@ -29,17 +30,17 @@ public class R2D2 implements Robot {
isPowerOn=false;
}
}
//returns isPowerOn
@Override
public boolean isPowerOn() {
return isPowerOn;
}
//creating a RobotException
@Override
public RobotException getLastException() {
return null;
}
//speak method that returns the sorted and formated numbers from the array zahlen
@Override
public String speak(int[] zahlen) throws RobotException {
@ -47,7 +48,9 @@ public class R2D2 implements Robot {
return arrayFormatieren(sortiert);
}
//method to format the result
//Returns a Stream consisting of the elements of this stream,each boxed to an Integer and maps it into a String
//each element of the Stream is separated by ,
private String arrayFormatieren(int[] zahlen){
var ergebnis = Arrays.stream(zahlen)
.boxed()
@ -55,6 +58,7 @@ public class R2D2 implements Robot {
.collect(Collectors.joining(","));
return ergebnis;
}
//method that sorts the array zahlen with the Selectionsort-Algorithmin in ascending order
@Override
public int[] think(int[] zahlen) throws RobotException {
int n = zahlen.length;