Skip to main content
summaryrefslogtreecommitdiffstats
blob: 8449aa886c2d90aae77f617b6ec6b7649b2622f5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
/********************************************************************************
 * Copyright (c) 2015-2018 Contributors to the Eclipse Foundation
 *
 * See the NOTICE file(s) distributed with this work for additional
 * information regarding copyright ownership.
 *
 * This program and the accompanying materials are made available under the
 * terms of the Eclipse Public License v. 2.0 which is available at
 * http://www.eclipse.org/legal/epl-2.0.
 *
 * SPDX-License-Identifier: EPL-2.0
 *
 ********************************************************************************/


package org.eclipse.mdm.api.base.massdata;

import org.eclipse.mdm.api.base.model.Channel;
import org.eclipse.mdm.api.base.model.ChannelGroup;
import org.eclipse.mdm.api.base.model.ScalarType;

/**
 * This builder allows to configure numerically sortable measured values to be
 * independent, which means the measured values do not depend on those of other
 * {@link Channel}s within their common {@link ChannelGroup}. The numerically
 * sortable types are listed below:
 *
 * <ul>
 * <li>{@link ScalarType#DATE}</li>
 * <li>{@link ScalarType#BYTE}</li>
 * <li>{@link ScalarType#SHORT}</li>
 * <li>{@link ScalarType#INTEGER}</li>
 * <li>{@link ScalarType#LONG}</li>
 * <li>{@link ScalarType#FLOAT}</li>
 * <li>{@link ScalarType#DOUBLE}</li>
 * </ul>
 *
 * @since 1.0.0
 * @author Viktor Stoehr, Gigatronik Ingolstadt GmbH
 * @author Sebastian Dirsch, Gigatronik Ingolstadt GmbH
 */
public class IndependentBuilder extends WriteRequestFinalizer {

	// ======================================================================
	// Constructors
	// ======================================================================

	/**
	 * Constructor.
	 *
	 * @param writeRequest
	 *            The {@link WriteRequest}, whose measured values of the
	 *            underlying {@link Channel} may be marked as independent.
	 */
	IndependentBuilder(WriteRequest writeRequest) {
		super(writeRequest);
	}

	// ======================================================================
	// Public methods
	// ======================================================================

	/**
	 * Triggers the measured values of the underlying {@link Channel} to be
	 * independent.
	 *
	 * @return The {@link WriteRequestFinalizer} is returned.
	 */
	public final WriteRequestFinalizer independent() {
		getWriteRequest().setIndependent();
		return this;
	}
	
	/**
	 * Triggers the measured values of the underlying {@link Channel} to be
	 * independent or not, depending on the value specified.
	 *
	 * @return The {@link WriteRequestFinalizer} is returned.
	 */
	public final WriteRequestFinalizer independent(boolean independent) {
		getWriteRequest().setIndependent(independent);
		return this;
	}

}

Back to the top