-
Notifications
You must be signed in to change notification settings - Fork 85
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Dusty Gutzmann
authored
Sep 17, 2020
1 parent
b726876
commit d9aaed6
Showing
478 changed files
with
14,510 additions
and
6,701 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
56 changes: 56 additions & 0 deletions
56
...droid-connector-sdk/src/main/java/com/clover/connector/sdk/v3/session/PropertyAction.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
/** | ||
* Autogenerated by Avro | ||
* | ||
* DO NOT EDIT DIRECTLY | ||
*/ | ||
|
||
|
||
/* | ||
* Copyright (C) 2019 Clover Network, Inc. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* https://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
package com.clover.connector.sdk.v3.session; | ||
|
||
import android.os.Parcelable; | ||
import android.os.Parcel; | ||
|
||
/** | ||
* This is an auto-generated Clover data enum. | ||
*/ | ||
@SuppressWarnings("all") | ||
public enum PropertyAction implements Parcelable { | ||
INSERT, UPDATE, DELETE; | ||
|
||
@Override | ||
public int describeContents() { | ||
return 0; | ||
} | ||
|
||
@Override | ||
public void writeToParcel(final Parcel dest, final int flags) { | ||
dest.writeString(name()); | ||
} | ||
|
||
public static final Creator<PropertyAction> CREATOR = new Creator<PropertyAction>() { | ||
@Override | ||
public PropertyAction createFromParcel(final Parcel source) { | ||
return PropertyAction.valueOf(source.readString()); | ||
} | ||
|
||
@Override | ||
public PropertyAction[] newArray(final int size) { | ||
return new PropertyAction[size]; | ||
} | ||
}; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.