Ejemplo n.º 1
0
 /**
  * Returns a String representation of {@code nodeProperties}.
  *
  * @param nodeProperties the {@link NodeProperties} instance
  * @return a String representation of {@code nodeProperties}
  */
 @SuppressWarnings("unused")
 public static String toString(NodeProperties nodeProperties) {
   return "NodeProperties{"
       + "capability="
       + toString(nodeProperties.getCapability())
       + ", position="
       + toString(nodeProperties.getPosition())
       + ", gateway="
       + nodeProperties.isGateway()
       + ", programDetails='"
       + nodeProperties.getProgramDetails()
       + '\''
       + ", nodeType='"
       + nodeProperties.getNodeType()
       + '\''
       + ", description='"
       + nodeProperties.getDescription()
       + '\''
       + '}';
 }