Conventions

In this book, you will find a number of styles of text that distinguish among different kinds of information. Here are some examples of these styles, and an explanation of their meaning.

Code words in text are shown as follows: " In the first case, you have not much control about the details, for example, a Pattern object will be created for each call of the facade methods delegating to the Pattern class "

A block of code is set as follows:

// system imports // Your custom imports: import java.util.regex.*; // system variables // Your custom variables: Pattern tuplePattern = Pattern.compile("\\((\\d+),\\s*(\\d+)\\)"); // expression start // Enter your code here: if (c_edge != null) { Matcher m = tuplePattern.matcher(c_edge); if (m.matches()) ...

Get KNIME Essentials now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.