com.netease.arctic.data.ChangeAction Maven / Gradle / Ivy
The newest version!
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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
*
* http://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.netease.arctic.data;
/**
* Lists all kinds of changes that a row can describe in a changelog.
*/
public enum ChangeAction {
// Note: Enums have no stable hash code across different JVMs, use toByteValue() for
// this purpose.
/**
* Insertion operation.
*/
INSERT((byte) 0),
/**
* Update operation with the previous content of the updated row.
*/
UPDATE_BEFORE((byte) 1),
/**
* Update operation with new content of the updated row.
*/
UPDATE_AFTER((byte) 2),
/**
* Deletion operation.
*/
DELETE((byte) 3);
private final byte value;
/**
* Creates a {@link ChangeAction} enum with the given short string and byte value representation of
* the {@link ChangeAction}.
*/
ChangeAction(byte value) {
this.value = value;
}
/**
* Returns the byte value representation of this {@link ChangeAction}. The byte value is used for
* serialization and deserialization.
*
*
*
*
* - "0" represents {@link #INSERT}.
*
- "1" represents {@link #UPDATE_BEFORE}.
*
- "2" represents {@link #UPDATE_AFTER}.
*
- "3" represents {@link #DELETE}.
*
*/
public byte toByteValue() {
return value;
}
/**
* Creates a {@link ChangeAction} from the given byte value. Each {@link ChangeAction} has a byte value
* representation.
*
* @see #toByteValue() for mapping of byte value and {@link ChangeAction}.
*/
public static ChangeAction fromByteValue(byte value) {
switch (value) {
case 0:
return INSERT;
case 1:
return UPDATE_BEFORE;
case 2:
return UPDATE_AFTER;
case 3:
return DELETE;
default:
throw new UnsupportedOperationException(
"Unsupported byte value '" + value + "' for row kind.");
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy