Base Configuration

This commit is contained in:
2018-03-25 13:13:01 +02:00
commit bcac6a3b85
334 changed files with 56965 additions and 0 deletions

View File

@ -0,0 +1,50 @@
/*
* Copyright (c) 2015-present, Parse, LLC.
* All rights reserved.
*
* This source code is licensed under the BSD-style license found in the
* LICENSE file in the root directory of this source tree. An additional grant
* of patent rights can be found in the PATENTS file in the same directory.
*/
package com.parse;
/**
* An operation where a field is set to a given value regardless of its previous value.
*/
import android.os.Parcel;
/** package */ class ParseSetOperation implements ParseFieldOperation {
/* package */ final static String OP_NAME = "Set";
private final Object value;
public ParseSetOperation(Object newValue) {
value = newValue;
}
public Object getValue() {
return value;
}
@Override
public Object encode(ParseEncoder objectEncoder) {
return objectEncoder.encode(value);
}
@Override
public void encode(Parcel dest, ParseParcelEncoder parcelableEncoder) {
dest.writeString(OP_NAME);
parcelableEncoder.encode(value, dest);
}
@Override
public ParseFieldOperation mergeWithPrevious(ParseFieldOperation previous) {
return this;
}
@Override
public Object apply(Object oldValue, String key) {
return value;
}
}